mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a30e934692
GitOrigin-RevId: 7ebbfa693205de1f57b1d54e25c46cfb1851acc8
31 lines
758 B
TypeScript
31 lines
758 B
TypeScript
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 (
|
|
<>
|
|
<h4>{t('help')}</h4>
|
|
<ul className="list-unstyled nav">
|
|
<li>
|
|
<HelpShowHotkeys />
|
|
</li>
|
|
{showSupport ? (
|
|
<>
|
|
<li>
|
|
<HelpDocumentation />
|
|
</li>
|
|
<li>
|
|
<HelpContactUs />
|
|
</li>
|
|
</>
|
|
) : null}
|
|
</ul>
|
|
</>
|
|
)
|
|
}
|