aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/main-container.js
blob: f64009539d6290d19aa17c81ab0e0402d67bced9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const WalletView = require('./components/wallet-view')

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,
      boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
    }
  }, [
    h(WalletView, {
      style: {
        flexGrow: 1,
        height: '82vh',
      }
    }, [
    ]),

    h('div.tx-view', {
      style: {
        flexGrow: 2,
        height: '82vh',
        background: '#FFFFFF',
      }
    }, [
    ]),
  ])
}