Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Add match to resolve params #339

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lessons/06-params/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ These URLs would match a route path like this:

The parts that start with `:` are URL parameters whose values will be
parsed out and made available to route components on
`this.props.params[name]`.
`this.props.match.params[name]`.

## Adding a Route with Parameters

Expand All @@ -32,7 +32,7 @@ export default React.createClass({
render() {
return (
<div>
<h2>{this.props.params.repoName}</h2>
<h2>{this.props.match.params.repoName}</h2>
</div>
)
}
Expand Down Expand Up @@ -84,7 +84,7 @@ export default React.createClass({

Now go test your links out. Note that the parameter name in the route
`path` becomes the property name in the component. Both `repoName` and
`userName` are available on `this.props.params` of your component. You
`userName` are available on `this.props.match.params` of your component. You
should probably add some prop types to help others and yourself out
later.

Expand Down