Concept Flow - Lazy loading routes and modules
App starts
User navigates to route
Check if module loaded?
Yes→Render component
No
Load module asynchronously
Render component from loaded module
User interacts with app
The app waits to load a module until the user navigates to its route, then loads it asynchronously and renders its components.