aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/main-container.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-07-31 12:25:32 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-07-31 12:25:32 +0800
commitcbd53d4601f1af5aa4337e86ea8875606406e803 (patch)
treee7072ff1f0a9fe2864ff56c3ba77a0dde8e42a3d /ui/app/main-container.js
parentca1a4b309676c3d10473acf4869b398d4ed50fb7 (diff)
downloadtangerine-wallet-browser-cbd53d4601f1af5aa4337e86ea8875606406e803.tar.gz
tangerine-wallet-browser-cbd53d4601f1af5aa4337e86ea8875606406e803.tar.zst
tangerine-wallet-browser-cbd53d4601f1af5aa4337e86ea8875606406e803.zip
Add containers for wallet view and dropdown UI
Diffstat (limited to 'ui/app/main-container.js')
-rw-r--r--ui/app/main-container.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/main-container.js b/ui/app/main-container.js
index ca68ba6b0..c1f7db0d8 100644
--- a/ui/app/main-container.js
+++ b/ui/app/main-container.js
@@ -1,6 +1,7 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
+const WalletView = require('./components/wallet-view')
module.exports = MainContainer
@@ -19,11 +20,10 @@ MainContainer.prototype.render = function () {
zIndex: 20,
}
}, [
- h('div.wallet-view', {
+ h(WalletView, {
style: {
flexGrow: 1,
height: '82vh',
- background: 'blue',
}
}, [
]),
@@ -32,7 +32,7 @@ MainContainer.prototype.render = function () {
style: {
flexGrow: 2,
height: '82vh',
- background: 'green',
+ background: '#FFFFFF',
}
}, [
]),