aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/main-container.js
blob: c1f7db0d8cb354e4b9f8dc38adb60bd2dcaf2e58 (plain) (tree)
1
2
3
4


                                            
                                                      

















                                              
                   


                       







                       
                              





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

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