Created
January 17, 2016 11:07
-
-
Save ynonp/8b3acfc167a2893ac325 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#set($comp = $NAME.substring(0,1).toUpperCase() + $NAME.substring(1)) | |
import React from 'react'; | |
export default React.createClass({ | |
propTypes: { | |
}, | |
getInitialState: function() { | |
return {}; | |
}, | |
componentDidMount: function() { | |
}, | |
componentWillUnmount: function() { | |
}, | |
render: function() { | |
return(<div> | |
</div>) | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment