ihor / react-select-bootstrap3

Twitter Bootstrap styles for react-select component v2 (https://github.com/JedWatson/react-select)

Home Page:https://www.npmjs.com/package/react-select-bootstrap3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Twitter Bootstrap styles for react-select component. Feel free to send PRs with improvements.

Example

Example

Installation

npm i react-select-bootstrap3 --save

Usage

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 = (
    <Select
        options={options}
        styles={styles}
    />
);

About

Twitter Bootstrap styles for react-select component v2 (https://github.com/JedWatson/react-select)

https://www.npmjs.com/package/react-select-bootstrap3

License:MIT License


Languages

Language:JavaScript 100.0%