What is Ng Module in Angular ?
What is Ng Module ??
Every Angular app has at least one NgModule, which is called the root module. The root module provides the bootstrap mechanism that launches the application.
Additional NgModules can be created to provide additional functionality or to organize the application into smaller, more manageable modules.
Overall, NgModules play a crucial role in organizing and modularizing an Angular application, making it more efficient, scalable, and maintainable.
Comments
Post a Comment