diff --git a/site/jekyll/getting-started/tutorial.md b/site/jekyll/getting-started/tutorial.md index d60278c9c..a2e04ad4c 100644 --- a/site/jekyll/getting-started/tutorial.md +++ b/site/jekyll/getting-started/tutorial.md @@ -231,7 +231,7 @@ You do not have to return basic HTML. You can return a tree of components that y The `ReactDOM` module exposes DOM-specific methods, while `React` has the core tools shared by React on different platforms (e.g., [React Native](http://facebook.github.io/react-native/)). ## Composing components -Let's build skeletons for `CommentList` and `CommentForm` which will, again, be simple `
`s. Add these two components to your file, keeping the existing `CommentBox` declaration and `ReactDOM.render` call: +Let's build skeletons for `CommentList` and `CommentForm` which will, again, be simple `
`s. Add these two components to the top of your file, just before the existing `CommentBox` declaration and `ReactDOM.render` call: ```javascript var CommentList = React.createClass({