import * as React from 'react'; import { GroupedList, IGroup, IGroupHeaderProps, IGroupFooterProps } from '@fluentui/react/lib/GroupedList'; import { Link } from '@fluentui/react/lib/Link'; import { createListItems, createGroups, IExampleItem } from '@fluentui/example-data'; import { getTheme, mergeStyleSets, IRawStyle } from '@fluentui/react/lib/Styling'; const theme = getTheme(); const headerAndFooterStyles: IRawStyle = { minWidth: 300, minHeight: 40, lineHeight: 40, paddingLeft: 16, }; const classNames = mergeStyleSets({ header: [headerAndFooterStyles, theme.fonts.xLarge], footer: [headerAndFooterStyles, theme.fonts.large], name: { display: 'inline-block', overflow: 'hidden', height: 24, cursor: 'default', padding: 8, boxSizing: 'border-box', verticalAlign: 'top', background: 'none', backgroundColor: 'transparent', border: 'none', paddingLeft: 32, }, }); const onRenderHeader = (props?: IGroupHeaderProps): JSX.Element | null => { if (props) { const toggleCollapse = (): void => { props.onToggleCollapse!(props.group!); }; return (