7 lines
283 B
Plaintext
7 lines
283 B
Plaintext
|
|
<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" />}
|
||
|
|
/>
|