Skip to content

Instantly share code, notes, and snippets.

@devhyunjae
Created March 18, 2016 02:16
Show Gist options
  • Save devhyunjae/e4375b6b0587e7e6cec4 to your computer and use it in GitHub Desktop.
Save devhyunjae/e4375b6b0587e7e6cec4 to your computer and use it in GitHub Desktop.
var AppES5 = React.createClass({
getInitialState: function(){
return {foo: 1};
},
render: function(){
return(
<div>{this.state.foo}</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment