import React, { Component } from 'react' import PropTypes from 'prop-types' import { withRouter } from 'react-router-dom' import { compose } from 'recompose' import {connect} from 'react-redux' import Identicon from '../../../../ui/app/components/identicon' import Breadcrumbs from './breadcrumbs' import { INITIALIZE_NOTICE_ROUTE } from '../../../../ui/app/routes' class UniqueImageScreen extends Component { static propTypes = { address: PropTypes.string, history: PropTypes.object, } render () { return (
Your unique account image
This image was programmatically generated for you by your new account number.
You’ll see this image everytime you need to confirm a transaction.
) } } export default compose( withRouter, connect( ({ metamask: { selectedAddress } }) => ({ address: selectedAddress, }) ) )(UniqueImageScreen)