import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import Button from '../../../../components/ui/button'; import { INITIALIZE_END_OF_FLOW_ROUTE } from '../../../../helpers/constants/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 (