mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
b2e74464a2
editor events GitOrigin-RevId: 8d74576d4f8117ecca47402afcc9cee229dd0dca
20 lines
644 B
JavaScript
20 lines
644 B
JavaScript
import { Trans } from 'react-i18next'
|
|
import * as eventTracking from '../../../infrastructure/event-tracking'
|
|
|
|
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
|
|
onClick={() => eventTracking.sendMB('left-menu-hotkeys-template')}
|
|
href="/articles/overleaf-keyboard-shortcuts/qykqfvmxdnjf"
|
|
target="_blank"
|
|
/>,
|
|
]}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|