aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/template.js
blob: a5203aec87ed65f5edf10cae5e539bfa04b4f204 (plain) (tree)
1
2
3
4
5
6
7
8





                                            
                                 
                          


                      
                                             





                                      
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')
  )
}