Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-selectize-js

ziishaned62MIT0.0.10

Light weight selectize.js component for react

react-selectize, selectize, selectize.js, react, select, select-input

readme

react-selectize-js

Light weight selectize.js component for react. demo

Install

yarn add react-selectize-js

Usage

import { Select } from 'react-selectize-js';

<Select onChange={(event) => console.log(event.target.value)}>
  <option value="1">Chuck Tesla</option>
  <option value="2">Elon Musk</option>
  <option value="3">Paweł Kuna</option>
  <option value="4">Nikola Tesla</option>
</Select>