@minutemailer/select
v0.0.17
Published
Headless select box for React with fuzzy search and keyboard navigation
Downloads
55
Maintainers
Readme
Headless select box for React
A powerful, headless select box component for React that allows you to build your own select box UI.
Installation
npm i @minutemailer/select
Usage
import { useState } from 'react';
import { Select } from '@minutemailer/select';
const options = [
{ value: '1', label: 'One' },
{ value: '2', label: 'Two' },
{ value: '3', label: 'Three' },
];
function SelectBox() {
const options = useSelector((state) => state.options);
const { q, search } = useSearch();
const { onKeyUp, onKeyDown } = useKeyboard();
return ...;
}
function App() {
const [value, setValue] = useState('1');
return (
<Select options={options} value={value} onChange={setState}><SelectBox /></Select>
);
};