export default function ShortCut(props: { menu: string }) { const { menu } = props const symbol = isMac ? '⌘' : 'Ctrl' return (

{symbol + menu}

) }