aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/main-container.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-03 04:32:02 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-03 04:32:02 +0800
commitdfa10763e36f745d82fb62adc4ac42773d266da4 (patch)
tree63dce8c2aef3bea8e89b631f2426415e9ee89762 /ui/app/main-container.js
parent7767f9f7ad7321d88a0b738d2c272961cc1ce286 (diff)
downloadtangerine-wallet-browser-dfa10763e36f745d82fb62adc4ac42773d266da4.tar.gz
tangerine-wallet-browser-dfa10763e36f745d82fb62adc4ac42773d266da4.tar.zst
tangerine-wallet-browser-dfa10763e36f745d82fb62adc4ac42773d266da4.zip
Integrate slideout menu with tx view
Diffstat (limited to 'ui/app/main-container.js')
-rw-r--r--ui/app/main-container.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/ui/app/main-container.js b/ui/app/main-container.js
index fb768c386..870b3e7f0 100644
--- a/ui/app/main-container.js
+++ b/ui/app/main-container.js
@@ -1,8 +1,8 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const WalletView = require('./components/wallet-view')
const TxView = require('./components/tx-view')
+const WalletView = require('./components/wallet-view')
const SlideoutMenu = require('react-burger-menu').slide
module.exports = MainContainer
@@ -29,14 +29,6 @@ MainContainer.prototype.render = function () {
}
}, [
- h(SlideoutMenu, {
- isOpen: true,
- }, [
- h(WalletView, {
- responsiveDisplayClassname: '.phone-visible'
- }),
- ]),
-
h(WalletView, {
style: {
},