diff --git a/react/the_react_ecosystem/react_router.md b/react/the_react_ecosystem/react_router.md index a0e7d6d0fe2..4f7d66f0070 100644 --- a/react/the_react_ecosystem/react_router.md +++ b/react/the_react_ecosystem/react_router.md @@ -233,7 +233,7 @@ const Profile = () => { export default Profile; ``` -Check out the `/profile`, `/profile/popeye` and `/profile/spinach` pages. The `` component gets replaced with the children component when their paths are visited. +Check out the `/profile` page. To visit `/profile/popeye` or `/profile/spinach` pages, manually add `/popeye` or `/spinach` to the end of the current URL. The `` component gets replaced with the children component when their paths are visited. If you want to render something as a default component when no path is added to Profile, you can add an index route to the children!