blob: 81e92b301880bf108eeb9e11373280a41efdc85a (
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
|
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 } = props
log.info({ address, symbol, string })
return (
h('li.token-cell', [
h(Identicon, {
diameter: 50,
address,
}),
h('h3', `${string || 0} ${symbol}`),
])
)
}
|