aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-modal-page-container/basic-tab-content/basic-tab-content.component.js
blob: 7510428719e0be74a1b4dd4a4564146af350e215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
    )
  }
}