import * as React from 'react'; import { Dropdown, DropdownMenuItemType, IDropdownOption, IDropdownStyles } from '@fluentui/react/lib/Dropdown'; const dropdownStyles: Partial = { dropdown: { width: 300 } }; const dropdownControlledExampleOptions = [ { key: 'fruitsHeader', text: 'Fruits', itemType: DropdownMenuItemType.Header }, { key: 'apple', text: 'Apple' }, { key: 'banana', text: 'Banana' }, { key: 'orange', text: 'Orange', disabled: true }, { key: 'grape', text: 'Grape' }, { key: 'divider_1', text: '-', itemType: DropdownMenuItemType.Divider }, { key: 'vegetablesHeader', text: 'Vegetables', itemType: DropdownMenuItemType.Header }, { key: 'broccoli', text: 'Broccoli' }, { key: 'carrot', text: 'Carrot' }, { key: 'lettuce', text: 'Lettuce' }, ]; export const DropdownControlledExample: React.FunctionComponent = () => { const [selectedItem, setSelectedItem] = React.useState(); const onChange = (event: React.FormEvent, item: IDropdownOption): void => { setSelectedItem(item); }; return ( ); };