mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
22 lines
404 B
TypeScript
22 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>
|
||
|
</>
|
||
|
)
|
||
|
}
|