aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/eth-balance.js
blob: 710d4fc8bb8643e4d6e6d6d5a38cabd29ef0471c (plain) (tree)
1
2
3
4
5
6
7
8
9


                                            
                                                      



                                        
                                 


                      
                                                    
                        
                         
                                        










                                  



      
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
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),
    ])

  )
}