July 2017
Intermediate to advanced
454 pages
10h 1m
English
We need to create an AppModule for your application. The following AppModule class is defined with the minimum NgModule:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
@NgModule({
imports: [
BrowserModule,
],
})
export class AppModule {
}
Here we just imported an NgModule from @angular/core and BrowserModule from @angular/platform-browser. Any simple browser-based Angular application will have such a simple AppModule.
Read now
Unlock full access