1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/main-container.js

43 lines
854 B
JavaScript
Raw Normal View History

2017-07-31 05:42:12 +02:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const WalletView = require('./components/wallet-view')
2017-07-31 05:42:12 +02:00
module.exports = MainContainer
inherits(MainContainer, Component)
function MainContainer () {
Component.call(this)
}
MainContainer.prototype.render = function () {
console.log("rendering MainContainer...");
return h('div.flex-row', {
style: {
position: 'absolute',
marginTop: '6vh',
width: '98%',
zIndex: 20,
2017-07-31 06:35:27 +02:00
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
2017-07-31 05:42:12 +02:00
}
}, [
h(WalletView, {
2017-07-31 05:42:12 +02:00
style: {
2017-07-31 06:53:13 +02:00
// width: '33.33%',
// height: '82vh',
2017-07-31 05:42:12 +02:00
}
}, [
]),
h('div.tx-view', {
style: {
2017-07-31 06:53:13 +02:00
width: '66.66%',
2017-07-31 05:42:12 +02:00
height: '82vh',
background: '#FFFFFF',
2017-07-31 05:42:12 +02:00
}
}, [
]),
])
}