Is there a way to add a sub-header to the Autocomplete
component in Material-UI?
Currently, my approach is as follows:
<Autocomplete
{...props}
options={options}
renderInput={(params) => <TextField {...params} label={label} />}
/>
You can see the output I currently have here, and what I am aiming for here.
Any suggestions on how to achieve the desired result?