diff options
Diffstat (limited to 'ui/app/template.js')
-rw-r--r-- | ui/app/template.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/app/template.js b/ui/app/template.js index f16f3c363..3189a838c 100644 --- a/ui/app/template.js +++ b/ui/app/template.js @@ -6,25 +6,25 @@ const actions = require('./actions') module.exports = connect(mapStateToProps)(COMPONENTNAME) -function mapStateToProps(state) { +function mapStateToProps (state) { return {} } inherits(COMPONENTNAME, Component) -function COMPONENTNAME() { +function COMPONENTNAME () { Component.call(this) } -COMPONENTNAME.prototype.render = function() { +COMPONENTNAME.prototype.render = function () { const props = this.props return ( h('div', { style: { background: 'blue', - } + }, }, [ - 'Hello, world!' + 'Hello, world!', ]) ) } |