I decided to learn React and started with the official tutorial. All is good until I get to this state of my code:
var CommentBox = React.createClass({ ren
A little late post/answer.
Try to bind your function inside the constructor
example:
this.yourfunction = this.yourfunction.bind(this);