Concept Flow - Defining routes array
Start: Define routes array
Create route objects with path & component
Add route objects to routes array
Pass routes array to RouterModule.forRoot()
Angular reads routes array
Router matches URL to path
Render matched component
End
This flow shows how Angular uses a routes array to map URL paths to components for navigation.