React Select
react-select
A Select control built with and for ReactJS
Forms
combobox
form
input
multiselect
react
react-component
select
ui
react-select
Forms
Stars
707
Weekly
6.1M
Open issues
9
Bundle
~15 kB
Installation
npm install react-selectCode example
import Select from "react-select";
const options = [
{ value: "react", label: "React" },
{ value: "vue", label: "Vue" },
];
export function Example() {
return <Select options={options} placeholder="Pick a stack" />;
}Pros & cons
Pros
- Actively maintained by Jed Watson
- 6.1M weekly downloads. Battle tested
- First-class TypeScript definitions
- MIT licensed
Considerations
- Adds roughly ~15 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 9 open issues on GitHub