import * as React from 'react'; import { Label, IPivotItemProps, Pivot, PivotItem } from '@fluentui/react'; export const PivotOnChangeExample = () => { const [lastHeader, setLastHeader] = React.useState<{ props: IPivotItemProps } | undefined>(undefined); return (
); };