blob: 34a12733f0e12cff6022aad064befe70cbc44c18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
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', [
h('span', `${symbol}: ${string}`),
])
)
}
|