react-simpler-select
A simple and highly reusable <select>
component built for React
npm install --save react-simpler-select
import Select from 'react-simpler-select';
const options = [
{ value: 'en', label: 'English' },
{ value: 'es', label: 'Spanish' },
];
<Select
placeholder="Choose a language"
value="en"
options={options}
onChange={onChange}
/>