/* eslint-disable max-len */ import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class Cheatsheet extends React.Component { render() { const { t } = this.props; return (

{t('sandbox.header')}

{t('sandbox.block')}

[{t('sandbox.empty_line')}]{t('sandbox.block_detail')}

{t('sandbox.line_break')}

[ ][ ] {t('sandbox.line_break_detail')}

{t('sandbox.typography')}

{t('sandbox.link')}

{t('sandbox.code_highlight')}

{t('sandbox.list')}

{t('sandbox.quote')}

{t('sandbox.table')}

            |Left       |    Mid    |      Right|
|:----------|:---------:|----------:|
|col 1      |   col 2   |      col 3|
|col 1      |   col 2   |      col 3|

{t('sandbox.image')}

![{t('sandbox.alt_text')}](URL) {t('sandbox.insert_image')}


{t('sandbox.open_sandbox')}
); } } Cheatsheet.propTypes = { t: PropTypes.func.isRequired, // i18next }; export default withTranslation()(Cheatsheet);