import * as React from 'react'; import { Menu, Tooltip } from '@fluentui/react-northstar'; const itemRenderer = (MenuItem, props) => { const { tooltip = '', key, ...rest } = props; return ( ); }; const items = [ { key: 'editorials', content: 'Editorials', tooltip: 'Click for opening Editorials', children: itemRenderer, }, { key: 'review', content: 'Reviews', tooltip: 'Click for opening Reviews', children: itemRenderer, }, { key: 'events', content: 'Upcoming Events', tooltip: 'Click for opening Upcoming Events', children: itemRenderer, }, ]; const MenuExampleWithTooltip = () => ; export default MenuExampleWithTooltip;