import * as React from 'react'; import { Label } from '@fluentui/react'; import { TabItemProps, Tabs, TabItem } from '@fluentui/react-tabs'; export const TabsOnChangeExample = () => { const [lastTab, setLastTab] = React.useState<{ props: TabItemProps } | undefined>(undefined); return (
); };