You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: site/jekyll/getting-started/tutorial.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ var CommentBox = React.createClass({
100
100
);
101
101
}
102
102
});
103
-
React.render(
103
+
ReactDOM.render(
104
104
<CommentBox />,
105
105
document.getElementById('content')
106
106
);
@@ -126,7 +126,7 @@ var CommentBox = React.createClass({displayName: 'CommentBox',
126
126
);
127
127
}
128
128
});
129
-
React.render(
129
+
ReactDOM.render(
130
130
React.createElement(CommentBox, null),
131
131
document.getElementById('content')
132
132
);
@@ -142,7 +142,7 @@ The `<div>` tags are not actual DOM nodes; they are instantiations of React `div
142
142
143
143
You do not have to return basic HTML. You can return a tree of components that you (or someone else) built. This is what makes React **composable**: a key tenet of maintainable frontends.
144
144
145
-
`React.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
145
+
`ReactDOM.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
146
146
147
147
## Composing components
148
148
@@ -299,7 +299,7 @@ var data = [
299
299
];
300
300
```
301
301
302
-
We need to get this data into `CommentList` in a modular way. Modify `CommentBox` and the `React.render()` call to pass this data into the `CommentList` via props:
302
+
We need to get this data into `CommentList` in a modular way. Modify `CommentBox` and the `ReactDOM.render()` call to pass this data into the `CommentList` via props:
303
303
304
304
```javascript{6,14}
305
305
var CommentBox = React.createClass({
@@ -314,7 +314,7 @@ var CommentBox = React.createClass({
314
314
}
315
315
});
316
316
317
-
React.render(
317
+
ReactDOM.render(
318
318
<CommentBox data={data} />,
319
319
document.getElementById('content')
320
320
);
@@ -452,7 +452,7 @@ If you hit `/comments` in your browser, you should now see the data encoded as J
452
452
Now that we have a data source, we can replace the hard-coded data with the dynamic data from the server. We will remove the data prop and replace it with a URL to fetch:
453
453
454
454
```javascript{2}
455
-
React.render(
455
+
ReactDOM.render(
456
456
<CommentBox url="/comments" />,
457
457
document.getElementById('content')
458
458
);
@@ -547,7 +547,7 @@ var CommentBox = React.createClass({
@@ -921,7 +921,7 @@ var CommentBox = React.createClass({
921
921
});
922
922
```
923
923
924
-
In the view, we will accept the list of comments as the model, and use `Html.React` to render the component. This will replace the `React.render` call that currently exists in Tutorial.jsx. All the props from the current `React.render` call should be moved here, and the `React.render` call should be deleted.
924
+
In the view, we will accept the list of comments as the model, and use `Html.React` to render the component. This will replace the `ReactDOM.render` call that currently exists in Tutorial.jsx. All the props from the current `ReactDOM.render` call should be moved here, and the `ReactDOM.render` call should be deleted.
0 commit comments