diff options
Improved template to not be invisible
Diffstat (limited to 'ui/app/template.js')
-rw-r--r-- | ui/app/template.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/template.js b/ui/app/template.js index 410c82a72..f16f3c363 100644 --- a/ui/app/template.js +++ b/ui/app/template.js @@ -21,9 +21,10 @@ COMPONENTNAME.prototype.render = function() { return ( h('div', { style: { - display: 'none', + background: 'blue', } }, [ + 'Hello, world!' ]) ) } |