Week 6 Day 4 Journal

... Less than 1 minute

# Week 6 Day 4 Journal

What is a nested route?

When might you use a nested route? (other than the provided example)

Can you pass parameters through nested routes? When might you use them?

  1. Nested routes are components that go to other components. You can use the router link to access them.

  2. If you want to to be able to click on a profile of a certain blog, you can use a nested route to get there. It sends you from one component to another.

  3. Yes, you can pass parameters. You would use this when you would want to go to a certain profile of a specific person, you would pass their id as a param.

Daily Challenge https://github.com/JordanWilker/Week-6-Day-4