import React, { Component } from 'react' import PropTypes from 'prop-types' import UserPreferencedCurrencyDisplay from '../../../../../components/app/user-preferenced-currency-display' import { PRIMARY, SECONDARY } from '../../../../../helpers/constants/common' export default class GasFeeDisplay extends Component { static propTypes = { gasLoadingError: PropTypes.bool, gasTotal: PropTypes.string, onReset: PropTypes.func, } static contextTypes = { t: PropTypes.func, } render () { const { gasTotal, gasLoadingError, onReset } = this.props return (
{gasTotal ? (
) : gasLoadingError ? (
{this.context.t('setGasPrice')}
) : (
{this.context.t('loading')}
) }
) } }