mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
33 lines
708 B
JavaScript
33 lines
708 B
JavaScript
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const parseBalance = require('../util').parseBalance
|
|
const formatBalance = require('../util').formatBalance
|
|
|
|
module.exports = EthBalanceComponent
|
|
|
|
inherits(EthBalanceComponent, Component)
|
|
function EthBalanceComponent() {
|
|
Component.call(this)
|
|
}
|
|
|
|
EthBalanceComponent.prototype.render = function() {
|
|
var state = this.props
|
|
var style = state.style
|
|
var value = formatBalance(state.value)
|
|
|
|
return (
|
|
|
|
h('.ether-balance', {
|
|
style: style,
|
|
}, [
|
|
h('.ether-balance-amount', {
|
|
style: {
|
|
display: 'inline',
|
|
},
|
|
}, value),
|
|
])
|
|
|
|
)
|
|
}
|