aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/main-container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/main-container.js')
-rw-r--r--ui/app/main-container.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/ui/app/main-container.js b/ui/app/main-container.js
new file mode 100644
index 000000000..ca68ba6b0
--- /dev/null
+++ b/ui/app/main-container.js
@@ -0,0 +1,41 @@
+const Component = require('react').Component
+const h = require('react-hyperscript')
+const inherits = require('util').inherits
+
+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('div.wallet-view', {
+ style: {
+ flexGrow: 1,
+ height: '82vh',
+ background: 'blue',
+ }
+ }, [
+ ]),
+
+ h('div.tx-view', {
+ style: {
+ flexGrow: 2,
+ height: '82vh',
+ background: 'green',
+ }
+ }, [
+ ]),
+ ])
+}
+