diff --git a/lessons/reach-router.md b/lessons/reach-router.md index 3d1c5415..1d8130bd 100644 --- a/lessons/reach-router.md +++ b/lessons/reach-router.md @@ -143,6 +143,9 @@ So now let's make the two pages link to each other. Go to Pet.js. // at top import { Link } from "@reach/router"; +// set id from props +const { name, animal, breed, media, location, id } = this.props; + // change wrapping div […]