React Select
v3.0.0
Select color

The React Select is a simple yet powerful select component for reactjs.

Single select


Basic implementation for single selection in React select.

Select a color

Multiselect


Multiselect allows users to select more than one option from the dropdown menu, making it ideal for scenarios where multiple selections are needed.

Select colors

Grouped


You can categorize options into distinct groups, making it easier to navigate and select from organized lists

Grouped

Searchable


This option allows users to quickly filter through a list of options by typing into the select input.

Searchable

Creatable


The creatable option allows users to add new options that are not pre-defined in the select dropdown, enabling dynamic creation of options within the select component.

Creatable

Asynchronous


React select supports asynchronous option fetching, allowing you to load options from an API or other dynamic sources.

Asynchronous

Dealing with extra data


If you're handling additional data, React Select seamlessly supports it out of the box. Simply include your data alongside { label, value, ....your_extra_data_here } for each item. For instance, consider the following example where countryis included as extra data. This supplementary information can also be accessed upon triggering the onChange event.

Passing extra data

Customization


Customizable elements include placeholders, suffixes, tags, and menu items. Custom rendering and CSS classes can be applied for extensive customization.

Customize