From d814a45dffa6a872f6e336cad33ca41ffb102887 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 13 Apr 2016 15:28:44 -0700 Subject: Moved UI into repo with its own dependency stack --- ui/app/template.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ui/app/template.js (limited to 'ui/app/template.js') diff --git a/ui/app/template.js b/ui/app/template.js new file mode 100644 index 000000000..3c2d902b5 --- /dev/null +++ b/ui/app/template.js @@ -0,0 +1,31 @@ +const inherits = require('util').inherits +const Component = require('react').Component +const h = require('react-hyperscript') +const connect = require('react-redux').connect +const actions = require('./actions') + +module.exports = connect(mapStateToProps)(COMPONENTNAME) + +function mapStateToProps(state) { + return {} +} + +inherits(COMPONENTNAME, Component) +function COMPONENTNAME() { + Component.call(this) +} + +COMPONENTNAME.prototype.render = function() { + var state = this.props + var rpc = state.rpc + + return ( + h('div', { + style: { + display: 'none', + } + }, [ + ]) + ) +} + -- cgit v1.2.3