import React, { PureComponent } from 'react' import PropTypes from 'prop-types' import Button from '../../../button' import { DEFAULT_ROUTE } from '../../../../routes' export default class EndOfFlowScreen extends PureComponent { static contextTypes = { t: PropTypes.func, } static propTypes = { history: PropTypes.object, completeOnboarding: PropTypes.func, } render () { const { t } = this.context const { history, completeOnboarding } = this.props return (
🎉
{ t('congratulations') }
{ t('endOfFlowMessage1') }
{ t('endOfFlowMessage2') }
{ '• ' + t('endOfFlowMessage3') }
{ '• ' + t('endOfFlowMessage4') }
{ t('endOfFlowMessage5') }
{ '*' + t('endOfFlowMessage6') }
) } }