Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ihor/react-select-bootstrap3
Twitter Bootstrap styles for react-select component v2 (https://github.com/JedWatson/react-select)
https://github.com/ihor/react-select-bootstrap3
bootstrap bootstrap3 react react-select style twitter-bootstrap
Last synced: about 1 month ago
JSON representation
Twitter Bootstrap styles for react-select component v2 (https://github.com/JedWatson/react-select)
- Host: GitHub
- URL: https://github.com/ihor/react-select-bootstrap3
- Owner: ihor
- License: mit
- Created: 2018-05-09T14:22:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T19:52:17.000Z (over 6 years ago)
- Last Synced: 2024-09-28T16:06:23.091Z (about 2 months ago)
- Topics: bootstrap, bootstrap3, react, react-select, style, twitter-bootstrap
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/react-select-bootstrap3
- Size: 53.7 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Twitter Bootstrap styles for [react-select](https://github.com/JedWatson/react-select) component. Feel free to send PRs with improvements.
Example
=======
![Example](https://github.com/ihor/react-select-bootstrap3/blob/master/example.gif?raw=true)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 = (
);
```