mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
19 lines
493 B
JavaScript
19 lines
493 B
JavaScript
|
import { Trans } from 'react-i18next'
|
||
|
|
||
|
export default function HotkeysModalBottomText() {
|
||
|
return (
|
||
|
<div className="hotkeys-modal-bottom-text">
|
||
|
<Trans
|
||
|
i18nKey="a_more_comprehensive_list_of_keyboard_shortcuts"
|
||
|
components={[
|
||
|
// eslint-disable-next-line jsx-a11y/anchor-has-content, react/jsx-key
|
||
|
<a
|
||
|
href="/articles/overleaf-keyboard-shortcuts/qykqfvmxdnjf"
|
||
|
target="_blank"
|
||
|
/>,
|
||
|
]}
|
||
|
/>
|
||
|
</div>
|
||
|
)
|
||
|
}
|