Skip to content

Instantly share code, notes, and snippets.

@byrichardpowell
Created November 15, 2015 11:20
Show Gist options
  • Save byrichardpowell/5b175877cf915e8ada4f to your computer and use it in GitHub Desktop.
Save byrichardpowell/5b175877cf915e8ada4f to your computer and use it in GitHub Desktop.
# ==========================
# Module: {{displayName}}
# Project: Server Density
# --------------------------
# Copyright Boxed Ice Ltd
# ==========================
define (require) ->
React = require('react')
#_ = require('underscore')
#cx = require('classnames')
{{displayName}} = React.createClass
displayName: "{{displayName}}"
getInitialState: ->
return {}
componentWillMount: ->
componentWillUnmount: ->
render: ->
return (
<div className="{{className}}">
{{displayName}}
</div>
)
return {{displayName}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment