aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-cell.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/token-cell.js')
-rw-r--r--ui/app/components/token-cell.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js
index 34a12733f..81e92b301 100644
--- a/ui/app/components/token-cell.js
+++ b/ui/app/components/token-cell.js
@@ -1,6 +1,7 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
+const Identicon = require('./identicon')
module.exports = TokenCell
@@ -15,8 +16,14 @@ TokenCell.prototype.render = function () {
log.info({ address, symbol, string })
return (
- h('li', [
- h('span', `${symbol}: ${string}`),
+ h('li.token-cell', [
+
+ h(Identicon, {
+ diameter: 50,
+ address,
+ }),
+
+ h('h3', `${string || 0} ${symbol}`),
])
)
}