aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-price-chart/gas-price-chart.component.js
blob: 7c32058b7c8d305500a169d5fc3b6fc8a3b0275c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class GasPriceChart extends Component {
  static contextTypes = {
    t: PropTypes.func,
  }

  render () {
    return (
      <div className="gas-price-chart">
        <div className="gas-price-chart__container" id="chart"></div>
      </div>
    )
  }
}