Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created January 17, 2016 11:07
Show Gist options
  • Save ynonp/8b3acfc167a2893ac325 to your computer and use it in GitHub Desktop.
Save ynonp/8b3acfc167a2893ac325 to your computer and use it in GitHub Desktop.
#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