import * as React from 'react'; import { Text } from '@fluentui/react-northstar'; import ComponentBestPractices from '../../../../components/ComponentBestPractices'; import { link } from '../../../../utils/helpers'; const doList = [ Choose desired accessibility behavior depending on the use case. (Check the {link('Behaviors', '/behaviors/menu')}{' '} section). , 'Provide label to the Menu component using `aria-label` or `aria-labelledby` prop.', 'Use Shorthand API with items prop instead of using Children API (`` component directly).', For render tree customization, use {link('render callback argument', '/shorthand-props#render-callback-argument')}. , ]; const dontList = ['Do not render focusable or clickable elements inside of the menu item.']; const MenuBestPractices: React.FunctionComponent<{}> = () => { return ; }; export default MenuBestPractices;