mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
a30e934692
GitOrigin-RevId: 7ebbfa693205de1f57b1d54e25c46cfb1851acc8
21 lines
404 B
TypeScript
21 lines
404 B
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import LeftMenuButton from './left-menu-button'
|
|
|
|
export default function HelpDocumentation() {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<>
|
|
<LeftMenuButton
|
|
type="link"
|
|
href="/learn"
|
|
icon={{
|
|
type: 'book',
|
|
fw: true,
|
|
}}
|
|
>
|
|
{t('documentation')}
|
|
</LeftMenuButton>
|
|
</>
|
|
)
|
|
}
|