nifty-wallet/ui/app/components/eth-balance.js

32 lines
657 B
JavaScript
Raw Normal View History

2016-05-18 13:41:08 -07:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const formatBalance = require('../util').formatBalance
2016-05-18 13:41:08 -07:00
module.exports = EthBalanceComponent
inherits(EthBalanceComponent, Component)
2016-06-21 13:18:32 -07:00
function EthBalanceComponent () {
2016-05-18 13:41:08 -07:00
Component.call(this)
}
2016-06-21 13:18:32 -07:00
EthBalanceComponent.prototype.render = function () {
2016-05-18 13:41:08 -07:00
var state = this.props
var style = state.style
var value = formatBalance(state.value)
2016-05-18 13:41:08 -07:00
return (
h('.ether-balance', {
style: style,
}, [
h('.ether-balance-amount', {
style: {
display: 'inline',
},
}, value),
])
)
}