**A ReactJS component to render a multiselect (with a filter).**
npm install react-select-multipleA ReactJS component to render a multiselect (with a filter).
This component creates a list of checkboxes to select options.
Behind the scenes an hidden tag is updated with your selected options.

Install react-select-multiple with npm:
```
$ npm install react-select-multiple
For CommonJS users:
`javascript`
var Multiselect = require('react-select-multiple');
* list (required) [array]: the initial list of options as an array of objects like that:
`javascript`
[
{value: "FR", title: "France"},
{value: "BE", title: "Belgique"},
{value: "ES", title: "Espagne"},
{value: "IT", title: "Italie"},
{value: "DE", title: "Allemagne"}
]
* selectors [bool]: if set to true, it display links to select all/none options
* selectAllLabel [string]: the "select all" label
* selectNoneLabel [string]: the "select none" label
* checkedByDefault [array]: a list of preselected options. Example:
`javascript`
[
{value: "BE", title: "Belgique"},
{value: "ES", title: "Espagne"}
]
* filterPlaceholder [string]: a placeholder for the input filter
Clone the repository and move into:
`console``
$ git clone git@github.com:AdeleD/react-select-multiple.git
$ cd react-select-multiple
Open the file example/index.html to see the result.