Created
November 15, 2015 11:20
-
-
Save byrichardpowell/5b175877cf915e8ada4f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ========================== | |
# 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