mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
17 lines
348 B
JavaScript
17 lines
348 B
JavaScript
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>
|
|
)
|
|
}
|
|
}
|