# React Select — Flexible Select Input Control for React
> React Select is a flexible, accessible select input component for React with support for multi-select, async option loading, creatable options, and custom styling.
## Install
Save in your project root:
# React Select — Flexible Select Input Control 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' },
{ value: 'py', label: 'Python' }
];
function App() {
return ;
}
```
## Introduction
The native HTML `