nifty-wallet/ui/app/main-container.js

51 lines
1.0 KiB
JavaScript
Raw Normal View History

2017-07-30 20:42:12 -07:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const TxView = require('./components/tx-view')
2017-08-02 13:32:02 -07:00
const WalletView = require('./components/wallet-view')
2017-08-02 13:03:36 -07:00
const SlideoutMenu = require('react-burger-menu').slide
2017-07-30 20:42:12 -07:00
module.exports = MainContainer
inherits(MainContainer, Component)
function MainContainer () {
Component.call(this)
}
MainContainer.prototype.render = function () {
2017-07-31 20:46:56 -07:00
return h('div', {
2017-07-30 20:42:12 -07:00
style: {
position: 'absolute',
marginTop: '35px',
2017-07-30 20:42:12 -07:00
width: '98%',
zIndex: 20,
2017-07-30 21:35:27 -07:00
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
2017-07-31 20:46:56 -07:00
fontFamily: 'DIN OT',
display: 'flex',
flexWrap: 'wrap',
alignItems: 'stretch',
overflowY: 'scroll',
2017-07-30 20:42:12 -07:00
}
}, [
h(WalletView, {
2017-07-30 20:42:12 -07:00
style: {
2017-08-02 13:03:36 -07:00
},
responsiveDisplayClassname: '.lap-visible',
2017-07-30 20:42:12 -07:00
}, [
]),
h(TxView, {
2017-07-30 20:42:12 -07:00
style: {
// flexGrow: 2
// width: '66.66%',
// height: '82vh',
// background: '#FFFFFF',
2017-07-30 20:42:12 -07:00
}
}, [
]),
])
}