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