import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import Button from '../../../components/ui/button'; import { isBeta } from '../../../helpers/utils/build-types'; export default class InfoTab extends PureComponent { state = { version: global.platform.getVersion(), }; static contextTypes = { t: PropTypes.func, }; renderInfoLinks() { const { t } = this.context; return (
{t('links')}

); } render() { const { t } = this.context; return (
{isBeta() ? t('betaMetamaskVersion') : t('metamaskVersion')}
{this.state.version}
{t('builtAroundTheWorld')}
{this.renderInfoLinks()}
); } }