Combo box with a blank option
If an selected option has an empty label it should not appear there is a selection.
import { useState } from 'react';
import { ComboBox, useTokenSearch } from '@citizensadvice/react-combo-boxes';
const options = ['Apple', 'Orange', 'Banana', ''];
export function Example() {
const [value, setValue] = useState('');
const [search, setSearch] = useState(null);
const filteredOptions = useTokenSearch(search, { options });
return (
<>
<label
id="select-label"
htmlFor="select"
>
Select
</label>
<ComboBox
id="select"
aria-labelledby="select-label"
value={value}
onValue={setValue}
onSearch={setSearch}
options={filteredOptions}
/>
<label htmlFor="output">Current value</label>
<output
htmlFor="select"
id="output"
>
{JSON.stringify(value, undefined, ' ')}
</output>
</>
);
}