Twitter Bootstrap styles for react-select component
npm install react-select-bootstrap3Twitter Bootstrap styles for react-select component. Feel free to send PRs with improvements.
Example
=======
!Example
Installation
============
``npm i react-select-bootstrap3 --save`
Usage
=====
`jsx
import Select from 'react-select';
import { styles } from 'react-select-bootstrap3';
const options = [
{value: 'chocolate', label: 'Chocolate'},
{value: 'strawberry', label: 'Strawberry'},
{value: 'vanilla', label: 'Vanilla'},
];
const select = (
options={options}
styles={styles}
/>
);
``