Concept Flow - Root module (AppModule) structure
Define @NgModule decorator
Declare components, directives, pipes
Import other modules
Provide services
Bootstrap root component
Angular compiles and launches AppModule
The root module is defined with @NgModule, listing declarations, imports, providers, and bootstrap component. Angular uses this to start the app.