1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/main-container.js
2017-08-02 13:03:36 -07:00

59 lines
1.2 KiB
JavaScript

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 SlideoutMenu = require('react-burger-menu').slide
module.exports = MainContainer
inherits(MainContainer, Component)
function MainContainer () {
Component.call(this)
}
MainContainer.prototype.render = function () {
return h('div', {
style: {
position: 'absolute',
marginTop: '6vh',
width: '98%',
zIndex: 20,
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
fontFamily: 'DIN OT',
display: 'flex',
flexWrap: 'wrap',
alignItems: 'stretch',
overflowY: 'scroll',
}
}, [
h(SlideoutMenu, {
isOpen: true,
}, [
h(WalletView, {
responsiveDisplayClassname: '.phone-visible'
}),
]),
h(WalletView, {
style: {
},
responsiveDisplayClassname: '.lap-visible',
}, [
]),
h(TxView, {
style: {
// flexGrow: 2
// width: '66.66%',
// height: '82vh',
// background: '#FFFFFF',
}
}, [
]),
])
}