2017-02-22 18:13:21 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
2017-10-17 17:36:22 -07:00
|
|
|
import { AppComponent } from './app.component.0';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
// #docregion imports
|
|
|
|
imports: [ BrowserModule ],
|
|
|
|
// #enddocregion imports
|
|
|
|
declarations: [ AppComponent ],
|
|
|
|
bootstrap: [ AppComponent ]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|