|
|
|
@ -3,6 +3,7 @@ const h = require('react-hyperscript') |
|
|
|
|
const inherits = require('util').inherits |
|
|
|
|
const WalletView = require('./components/wallet-view') |
|
|
|
|
const TxView = require('./components/tx-view') |
|
|
|
|
const SlideoutMenu = require('react-burger-menu').slide |
|
|
|
|
|
|
|
|
|
module.exports = MainContainer |
|
|
|
|
|
|
|
|
@ -28,9 +29,18 @@ MainContainer.prototype.render = function () { |
|
|
|
|
} |
|
|
|
|
}, [ |
|
|
|
|
|
|
|
|
|
h(SlideoutMenu, { |
|
|
|
|
isOpen: true, |
|
|
|
|
}, [ |
|
|
|
|
h(WalletView, { |
|
|
|
|
responsiveDisplayClassname: '.phone-visible' |
|
|
|
|
}), |
|
|
|
|
]), |
|
|
|
|
|
|
|
|
|
h(WalletView, { |
|
|
|
|
style: { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
responsiveDisplayClassname: '.lap-visible', |
|
|
|
|
}, [ |
|
|
|
|
]), |
|
|
|
|
|
|
|
|
|