import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import Button from '../../../../button' import { INITIALIZE_SEED_PHRASE_ROUTE, INITIALIZE_END_OF_FLOW_ROUTE } from '../../../../../routes' export default class UniqueImageScreen extends PureComponent { static contextTypes = { t: PropTypes.func, } static propTypes = { history: PropTypes.object, isImportedKeyring: PropTypes.bool, } render () { const { t } = this.context const { history, isImportedKeyring } = this.props return (
{ t('protectYourKeys') }
{ t('protectYourKeysMessage1') }
{ t('protectYourKeysMessage2') }
) } }