Skip to content

Instantly share code, notes, and snippets.

@uxnjs01
Created August 23, 2015 00:29
Show Gist options
  • Save uxnjs01/dd3958f5d05c62b440bd to your computer and use it in GitHub Desktop.
Save uxnjs01/dd3958f5d05c62b440bd to your computer and use it in GitHub Desktop.
Component with state
var StateExample = React.createClass({
render: function() {
getInitialState: function() {
return {
likes: 3
}
},
return (
<p>
{this.state.likes} people like this.
</p>
);
}
});
@uxnjs01
Copy link
Author

uxnjs01 commented Aug 23, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment