16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
|
|
<Autocomplete
|
||
|
|
options={top100Films}
|
||
|
|
getOptionLabel={(option) => option.title}
|
||
|
|
renderValue={(value, getItemProps) => (
|
||
|
|
<Chip label={value.title} {...getItemProps()} />
|
||
|
|
)}
|
||
|
|
renderInput={(params) => <TextField {...params} label="Movie" />}
|
||
|
|
/>
|
||
|
|
<Autocomplete
|
||
|
|
options={top100Films.map((option) => option.title)}
|
||
|
|
freeSolo
|
||
|
|
renderValue={(value, getItemProps) => (
|
||
|
|
<Chip label={value} {...getItemProps()} />
|
||
|
|
)}
|
||
|
|
renderInput={(params) => <TextField {...params} label="freeSolo" />}
|
||
|
|
/>
|