diff options
Diffstat (limited to 'ui/app/template.js')
-rw-r--r-- | ui/app/template.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/template.js b/ui/app/template.js index 3c2d902b5..f16f3c363 100644 --- a/ui/app/template.js +++ b/ui/app/template.js @@ -16,15 +16,15 @@ function COMPONENTNAME() { } COMPONENTNAME.prototype.render = function() { - var state = this.props - var rpc = state.rpc + const props = this.props return ( h('div', { style: { - display: 'none', + background: 'blue', } }, [ + 'Hello, world!' ]) ) } |