Concept Flow - Child routes and nested routing
App starts
Router reads URL
Match parent route
Render parent component
Check for child route
Yes
Match child route
Render child component inside parent
Display nested view
User navigates -> Repeat
The router first matches the parent route, renders its component, then checks and renders the child route component inside the parent's view.