import React, { Component } from 'react' import PropTypes from 'prop-types' import Loading from '../../../loading-screen' import GasPriceButtonGroup from '../../gas-price-button-group' export default class BasicTabContent extends Component { static contextTypes = { t: PropTypes.func, } static propTypes = { gasPriceButtonGroupProps: PropTypes.object, } render () { const { gasPriceButtonGroupProps } = this.props return (
Estimated Processing Times
Select a higher gas fee to accelerate the processing of your transaction.*
{!gasPriceButtonGroupProps.loading ? : }
* Accelerating a transaction by using a higher gas price increases its chances of getting processed by the network faster, but it is not always guaranteed.
) } }