aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/template.js')
-rw-r--r--ui/app/template.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/template.js b/ui/app/template.js
index 3189a838c..d15b30fd2 100644
--- a/ui/app/template.js
+++ b/ui/app/template.js
@@ -2,7 +2,6 @@ const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
-const actions = require('./actions')
module.exports = connect(mapStateToProps)(COMPONENTNAME)
@@ -24,7 +23,7 @@ COMPONENTNAME.prototype.render = function () {
background: 'blue',
},
}, [
- 'Hello, world!',
+ `Hello, ${props.sender}`,
])
)
}