import * as React from 'react'; import { GroupedList, IGroup, IGroupHeaderProps, IGroupFooterProps } from 'office-ui-fabric-react/lib/GroupedList'; import { Link } from 'office-ui-fabric-react/lib/Link'; import { createListItems, createGroups, IExampleItem } from '@uifabric/example-data'; import { getTheme, mergeStyleSets, IRawStyle } from 'office-ui-fabric-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 => { const toggleCollapse = (): void => { props.onToggleCollapse!(props.group!); }; return (