import { Table, Button, Flex, MenuButton } from '@fluentui/react-northstar'; import { gridNestedBehavior, gridCellWithFocusableElementBehavior, gridCellMultipleFocusableBehavior, } from '@fluentui/accessibility'; import * as React from 'react'; import { MoreIcon } from '@fluentui/react-icons-northstar'; function handleRowClick(index) { alert(`OnClick on the row ${index} executed.`); } const header = { key: 'header', items: [ { content: 'id', key: 'id' }, { content: 'Name', key: 'name' }, { content: 'Picture', key: 'pic' }, { content: 'Age', key: 'action' }, { content: 'Tags', key: 'tags' }, { key: 'more options', 'aria-label': 'options' }, ], }; const moreOptionCell = { content: