aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/template.js')
-rw-r--r--ui/app/components/template.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/template.js b/ui/app/components/template.js
index a5203aec8..b6ed8eaa0 100644
--- a/ui/app/components/template.js
+++ b/ui/app/components/template.js
@@ -10,9 +10,9 @@ function NewComponent () {
}
NewComponent.prototype.render = function () {
- var state = this.props
+ const props = this.props
return (
- h('span', 'Placeholder component')
+ h('span', props.message)
)
}