Modules in Angular
Modules are used to organize an Angular application into cohesive blocks of functionality. Here is an example of a module in Angular:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
@NgModule({
imports: [BrowserModule],
declarations: [AppComponent, HelloComponent],
bootstrap: [AppComponent],
})
export class AppModule {}
This module imports the BrowserModule and declares the AppComponent and HelloComponent so that they can be used in the application.
No comments:
Post a Comment