aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-cell.js
blob: 879dc01d1c1f486ebfa5ede08662e8e7e29db1b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const Identicon = require('./identicon')

module.exports = TokenCell

inherits(TokenCell, Component)
function TokenCell () {
  Component.call(this)
}

TokenCell.prototype.render = function () {
  const props = this.props
  const { address, symbol, string, network } = props
  log.info({ address, symbol, string })

  return (
    h('li.token-cell', [

      h(Identicon, {
        diameter: 50,
        address,
        network,
      }),

      h('h3', `${string || 0} ${symbol}`),
    ])
  )
}