a double listbox react component
npm install react-listboxa double listbox react component





This package can be installed via npm
``javascript`
npm install react-listbox --save
!screen shot 2016-10-05 at 11 10 36 pm
Demo & Examples can be found here
`javascript
import ListBox from 'react-listbox';
import 'react-listbox/dist/react-listbox.css';
const options = [
{ label: 'One', value: 1 },
{ label: 'Two', value: 2 },
{ label: 'Three', value: 3 },
];
// You can also pass the array of preselected options;
const selected = [1, 2];
onChange = selectedValues => {
// handle selected values here
};
`
You can also use the browser build available in the dist folder.
`html
type="text/javascript"
src="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.min.js"
>
rel="stylesheet"
href="https://unpkg.com/react-listbox@1.2.13/dist/react-listbox.css"
/>
``
This library was inspired by jQuery multi-select.
MIT Licensed. Copyright (c) Sridatta 2016.