app.module.ts (316B)
1 import { BrowserModule } from '@angular/platform-browser'; 2 import { NgModule } from '@angular/core'; 3 4 5 import { AppComponent } from './app.component'; 6 7 8 @NgModule({ 9 declarations: [ 10 AppComponent 11 ], 12 imports: [ 13 BrowserModule 14 ], 15 providers: [], 16 bootstrap: [AppComponent] 17 }) 18 export class AppModule { }