# React Select — The Flexible Select Input for React > A highly customizable, accessible select/dropdown component for React apps with async loading, multi-select, creatable options, and full keyboard navigation. ## Install Save as a script file and run: # React Select — The Flexible Select Input for React ## Quick Use ```bash npm install react-select ``` ```jsx import Select from 'react-select'; const options = [ { value: 'chocolate', label: 'Chocolate' }, { value: 'vanilla', label: 'Vanilla' }, ]; function App() { return