import * as React from 'react' import { WithTranslation } from 'react-i18next' import FullscreenCTA from 'src/components/FullscreenCTA' import { withTranslation } from 'src/i18n' import { emptyHeader } from 'src/navigator/Headers' import { navigateToWalletStorePage } from 'src/utils/linking' type Props = WithTranslation class UpgradeScreen extends React.Component { static navigationOptions = { ...emptyHeader, } render() { const { t } = this.props return ( ) } } export default withTranslation()(UpgradeScreen)