A flexible and easy accessible combo-box for the React JS.
npm install --save react-responsive-combo-box
import React from 'react'
import ComboBox from 'react-responsive-combo-box'
import 'react-responsive-combo-box/dist/index.css'
const ComboBoxExample = () => {
const data = [
'America',
'India',
'Australia',
'Argentina',
'Ireland',
'Indonesia',
'Iceland',
'Japan'
]
return <ComboBox options={data} enableAutocomplete />
}
Read the full Documentation here.
To view the demo of the Combo Box component in the code sandbox. Click here.
MIT © ashwinKumar0505