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> ) } }