aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/root.js
blob: 9fedf625f80677b4014a8bf5eb997633d7baf73a (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
const inherits = require('util').inherits
const React = require('react')
const Component = require('react').Component
const Provider = require('react-redux').Provider
const h = require('react-hyperscript')
const App = require('./app')

module.exports = Root


inherits(Root, Component)
function Root() { Component.call(this) }

Root.prototype.render = function() {
  return (
    
    h(Provider, {
      store: this.props.store,
    }, [
      h(App)
    ])

  )
}