We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edbfd25 commit 8e6bb2eCopy full SHA for 8e6bb2e
docs/guides/overview.md
@@ -263,7 +263,7 @@ Dynamic Segments
263
264
When we added the `message` route, we introduced a "dynamic segment" to
265
the URL. These segements get parsed from the url and passed into your
266
-route handler as `props`.
+route handler on `this.props.params`.
267
268
Remember our message route looks like this:
269
@@ -277,7 +277,7 @@ Lets look at accessing the `messageId` in `Message`.
277
var Message = React.createClass({
278
render: function() {
279
return (
280
- <div>{this.props.messageId}</div>
+ <div>{this.props.params.messageId}</div>
281
);
282
}
283
});
0 commit comments