import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { DefaultCustomizations } from '@uifabric/theme-samples'; import { initializeIcons, Checkbox, Dropdown, DropdownMenuItemType, IDropdownOption, SearchBox, Slider, SpinButton, Stack, TextField, ThemeProvider, Toggle, } from '@fluentui/react-next'; initializeIcons(); let _rootDiv: HTMLElement; const dropdownOptions: IDropdownOption[] = [ { 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' }, ]; const dropdownStyles = { dropdown: { width: 300 }, }; const theme = { tokens: DefaultCustomizations.settings.theme, }; function start(): void { if (!_rootDiv) { _rootDiv = document.createElement('div'); document.body.appendChild(_rootDiv); } ReactDOM.render( , _rootDiv, ); } // Start the application. start();