2022-11-24 09:26:38 -05:00
|
|
|
import { Trans } from 'react-i18next'
|
2023-08-22 09:33:19 -04:00
|
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
2022-11-24 09:26:38 -05:00
|
|
|
|
|
|
|
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
|
2023-08-22 09:33:19 -04:00
|
|
|
onClick={() => eventTracking.sendMB('left-menu-hotkeys-template')}
|
2022-11-24 09:26:38 -05:00
|
|
|
href="/articles/overleaf-keyboard-shortcuts/qykqfvmxdnjf"
|
|
|
|
target="_blank"
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|