Files
react-test/docs/data/material/components/autocomplete/Grouped.tsx.preview

7 lines
283 B
Plaintext
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
<Autocomplete
options={options.sort((a, b) => -b.firstLetter.localeCompare(a.firstLetter))}
groupBy={(option) => option.firstLetter}
getOptionLabel={(option) => option.title}
sx={{ width: 300 }}
renderInput={(params) => <TextField {...params} label="With categories" />}
/>