aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/template.js
blob: 9e4eca20f0f1dffa31477211a47a2b27ada48bf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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() {
  var state = this.props

  return (
    h('span', 'Placeholder component')
  )
}