A collection of Components like autocomplete, radio, checkbox, slider etc. written in React.
##Installation
npm install --save react-filters
##Basic Usage import the component you need to use.
import { Slider, Toggle } from 'react-filters/dist';
If you don't want to use all the components and are concerned about file size, you can just import the component you need.
import Slider from 'react-filters/dist/Slider';
import Toggle from 'react-filters/dist/Toggle';
##Components
Click on the component name to go to their documentation.
- Toggle (Switch, Checkbox, Radio)
- Slider
- Autocomplete
- Input Range
- Count
- Select
- Dropdown
##Development
- Clone the repo
- Create a new branch.
- Run
npm install && npm run storybook
- You can find the server running at localhost:9002
- Add feature or fix bug. Add tests if required.
- if commit fails make sure that there's no linting error or failed test by running
npm run test && npm run lint
##License MIT @ Ritesh Kumar