diff options
Diffstat (limited to 'ui/app/root.js')
-rw-r--r-- | ui/app/root.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ui/app/root.js b/ui/app/root.js index 9fedf625f..92c32d324 100644 --- a/ui/app/root.js +++ b/ui/app/root.js @@ -7,17 +7,16 @@ const App = require('./app') module.exports = Root - inherits(Root, Component) -function Root() { Component.call(this) } +function Root () { Component.call(this) } -Root.prototype.render = function() { +Root.prototype.render = function () { return ( - + h(Provider, { store: this.props.store, }, [ - h(App) + h(App), ]) ) |