import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class SimpleCheatsheet extends React.Component { render() { const { t } = this.props; return (

# {t('sandbox.header_x', { index: '1' })}
## {t('sandbox.header_x', { index: '2' })}

*{t('sandbox.italics')}*  **{t('sandbox.bold')}**

[{t('sandbox.link')}](http://..)
[/Page1/ChildPage1]

```javascript:index.js
writeCode();
```

- {t('sandbox.unordered_list_x', { index: '1' })}
   - {t('sandbox.unordered_list_x', { index: '1.1' })}
- {t('sandbox.unordered_list_x', { index: '2' })}
1. {t('sandbox.ordered_list_x', { index: '1' })}
1. {t('sandbox.ordered_list_x', { index: '2' })}


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

); } } SimpleCheatsheet.propTypes = { t: PropTypes.func.isRequired, // i18next }; export default withTranslation()(SimpleCheatsheet);