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