Accessible React Combobox (Autocomplete).
npm install @reach/combobox !MIT license
Accessible combobox (autocomplete or autosuggest) component for React.
A combobox is the combination of an and a list. The list is designed to help the user arrive at a value, but the value does not necessarily have to come from that list. Don't think of it like a , but more of an with some suggestions. You can, however, validate that the value comes from the list, that's up to your app.
``js
import {
Combobox,
ComboboxInput,
ComboboxPopover,
ComboboxList,
ComboboxOption,
ComboboxOptionText,
} from "@reach/combobox";
import "@reach/combobox/styles.css";
function Example() {
return (