What is an Angular module, and why is it important?
- An Angular Module (NgModule) is a container to group related components,
directives, pipes, and services.
- It organizes an Angular app into cohesive blocks of functionality.
- Helps with code organization, compilation, dependency injection, and lazy
loading.
- Every Angular app has at least one root module (AppModule).