1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/gas-customization/gas-price-chart/gas-price-chart.component.js

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