1import React, { Component } from 'react'
2import Select from 'react-select'
3
4const options = [
5 { value: 'chocolate', label: 'Chocolate' },
6 { value: 'strawberry', label: 'Strawberry' },
7 { value: 'vanilla', label: 'Vanilla' }
8]
9
10const MyComponent = () => (
11 <Select options={options} />
12)
13
1// lightweigt multiple select pure react component
2npm i react-multiple-select-dropdown-lite