From f5fa0d3fa5b4377780bf90a5078f2be38e288ce2 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 16 Jun 2016 16:49:10 -0700 Subject: [PATCH] Improved template to not be invisible --- ui/app/template.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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!' ]) ) }