import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import Identicon from '../../../../identicon' import Breadcrumbs from '../../../../breadcrumbs' import Button from '../../../../button' import { INITIALIZE_NOTICE_ROUTE } from '../../../../../routes' export default class UniqueImageScreen extends PureComponent { static contextTypes = { t: PropTypes.func, } static propTypes = { address: PropTypes.string, history: PropTypes.object, } render () { const { t } = this.context const { address, history } = this.props return (
{ t('yourUniqueAccountImage') }
{ t('yourUniqueAccountImageDescription1') }
{ t('yourUniqueAccountImageDescription2') }
) } }