aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/template.js')
-rw-r--r--ui/app/template.js31
1 files changed, 31 insertions, 0 deletions
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',
+ }
+ }, [
+ ])
+ )
+}
+