You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
576 B
23 lines
576 B
6 years ago
|
import React, { Component } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import GasPriceButtonGroup from '../../gas-price-button-group'
|
||
|
|
||
|
export default class BasicTabContent extends Component {
|
||
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
static propTypes = {
|
||
|
gasPriceButtonGroupProps: PropTypes.object,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
return (
|
||
|
<div className="basic-tab-content">
|
||
|
<div className="basic-tab-content__title">Suggest gas fee increases</div>
|
||
|
<GasPriceButtonGroup {...this.props.gasPriceButtonGroupProps} />
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|