# React Select — Flexible Select Input for React > A fully featured, accessible select control for React applications with support for multi-select, async loading, creatable options, and custom styling. ## Install Save in your project root: # React Select — Flexible Select Input for React ## Quick Use ```bash npm install react-select ``` ```jsx import Select from 'react-select'; const options = [ { value: 'js', label: 'JavaScript' }, { value: 'ts', label: 'TypeScript' }, ]; export default () =>