import * as React from 'react'; import { Menu, tabListBehavior } from '@fluentui/react-northstar'; const items = [ { key: 'editorials', content: 'Editorials' }, { key: 'review', content: 'Reviews' }, { key: 'events', content: 'Upcoming Events' }, ]; const MenuExampleTabShorthand: React.FC = props => (
); export default MenuExampleTabShorthand;