import * as React from 'react'; interface IMenuItemProps { className?: string text: string title?: string shortcut?: string onClick: () => void } export function MenuItem(props: IMenuItemProps): JSX.Element { return ( ); }