# reusable-component-library-rohit-luthra

> React based reusable component library

Latest version **1.0.7** (published 2019-08-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install reusable-component-library-rohit-luthra
pnpm add reusable-component-library-rohit-luthra
yarn add reusable-component-library-rohit-luthra
bun add reusable-component-library-rohit-luthra
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2019-08-06 |
| First published | 2019-08-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=8 |
| Dependencies | 0 |
| Unpacked size | 42.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Rohit Kumar Luthra |
| Maintainers | rohitkumarluthra19 |
| Keywords | react, react-flow, reactjs |

## Links

- npm: https://www.npmjs.com/package/reusable-component-library-rohit-luthra
- Repository: https://github.com/rohitluthra19/reusable-component-library-rohit-luthra
- Homepage: https://github.com/rohitluthra19/reusable-component-library-rohit-luthra#readme
- Issues: https://github.com/rohitluthra19/reusable-component-library-rohit-luthra/issues
- npm.io page: https://npm.io/package/reusable-component-library-rohit-luthra

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.7 (latest) — 2019-08-06
- 1.0.0 — 2019-08-06

## README

# reusable-component-library-rohit-luthra

> react based reusable component library

[![NPM](https://img.shields.io/npm/v/component-library-test.svg)](https://www.npmjs.com/package/reusable-component-library-rohit-luthra) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save reusable-component-library-rohit-luthra
```

## Usage

```jsx
import React, { Component } from 'react'

import { Input, Header, SearchBar } from 'reusable-component-library-rohit-luthra'
import s from './index.css';

export default class App extends Component {
  render () {
    return (
      <div className={s.container}>
        <Header></Header>
        <Input
          label="CITY"
          name="city"
          placeholder=""
          value={""}
          onChange={ () => {console.log('changed')} }
          disabled={false}
          onBlur={ () => {console.log('blur')} }
        />
        <SearchBar
          placeholder="Search Members"
          query=""
          onSearch={ () => {console.log('search')} }
          onChange={ () => {console.log('change')} }
        />
      </div>
    )
  }
}

```

## License

MIT © [rohitluthra](https://github.com/rohitluthra19)

---
_Source: https://npm.io/package/reusable-component-library-rohit-luthra · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
