Skip to main content

React Select

Quick start

npm i react-select
import React from 'react'
import Select from 'react-select'

const options = [
{ value: 'chocolate', label: 'Chocolate' },
{ value: 'strawberry', label: 'Strawberry' },
{ value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
<Select options={options} />
)

Props

Styles

Custom Components

Creatable

Async