aboutsummaryrefslogtreecommitdiffstats
path: root/responsive-ui/app/components/template.js
diff options
context:
space:
mode:
Diffstat (limited to 'responsive-ui/app/components/template.js')
-rw-r--r--responsive-ui/app/components/template.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/responsive-ui/app/components/template.js b/responsive-ui/app/components/template.js
deleted file mode 100644
index b6ed8eaa0..000000000
--- a/responsive-ui/app/components/template.js
+++ /dev/null
@@ -1,18 +0,0 @@
-const Component = require('react').Component
-const h = require('react-hyperscript')
-const inherits = require('util').inherits
-
-module.exports = NewComponent
-
-inherits(NewComponent, Component)
-function NewComponent () {
- Component.call(this)
-}
-
-NewComponent.prototype.render = function () {
- const props = this.props
-
- return (
- h('span', props.message)
- )
-}