Merge pull request #6059 from jimfb/tutorial-children-callback

Clearify callback text in the tutorial
This commit is contained in:
Jim
2016-02-18 11:14:24 -08:00
+1 -1
View File
@@ -620,7 +620,7 @@ var CommentBox = React.createClass({
});
```
Let's call the callback from the `CommentForm` when the user submits the form:
Now that `CommentBox` has made the callback available to `CommentForm` via the `onCommentSubmit` prop, the `CommentForm` can call the callback when the user submits the form:
```javascript{19}
// tutorial19.js