import React from 'react'; import Column from '../ui/components/column'; import ColumnBackButtonSlim from '../../components/column_back_button_slim'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import PropTypes from 'prop-types'; import ImmutablePureComponent from 'react-immutable-pure-component'; const messages = defineMessages({ heading: { id: 'keyboard_shortcuts.heading', defaultMessage: 'Keyboard Shortcuts' }, }); export default @injectIntl class KeyboardShortcuts extends ImmutablePureComponent { static propTypes = { intl: PropTypes.object.isRequired, multiColumn: PropTypes.bool, }; render () { const { intl } = this.props; return (
r
m
p
f
b
enter, o
x
up, k
down, j
1-9
n
alt+n
backspace
s
esc
g+h
g+n
g+l
g+t
g+d
g+s
g+f
g+p
g+u
g+b
g+m
g+r
?
); } }