2016-07-27 00:24:54 -07:00
|
|
|
// #docregion
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2016-11-21 17:13:21 -08:00
|
|
|
import { AppComponent } from './app.component';
|
2016-07-27 00:24:54 -07:00
|
|
|
|
|
|
|
@NgModule({
|
2016-11-21 17:13:21 -08:00
|
|
|
imports: [ BrowserModule ],
|
|
|
|
declarations: [ AppComponent ],
|
|
|
|
bootstrap: [ AppComponent ]
|
2016-07-27 00:24:54 -07:00
|
|
|
})
|
|
|
|
export class AppModule { }
|