From 86d367957fe8ac04462f716fe0ba2bfa4e5ff3f6 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 20 Jul 2017 12:38:38 -0700 Subject: Move responsive ui into its own folder for easier merges --- ui/responsive/app/components/template.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 ui/responsive/app/components/template.js (limited to 'ui/responsive/app/components/template.js') diff --git a/ui/responsive/app/components/template.js b/ui/responsive/app/components/template.js deleted file mode 100644 index b6ed8eaa0..000000000 --- a/ui/responsive/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) - ) -} -- cgit