import { useTranslation } from 'react-i18next' import getMeta from '../../../utils/meta' import HelpContactUs from './help-contact-us' import HelpDocumentation from './help-documentation' import HelpShowHotkeys from './help-show-hotkeys' export default function HelpMenu() { const { t } = useTranslation() const showSupport = getMeta('ol-showSupport') as boolean | undefined return ( <>

{t('help')}

) }