angular/aio/content/examples/ajs-quick-reference/src/app/app.module.1.ts
2017-04-24 14:00:51 +01:00

12 lines
307 B
TypeScript

// #docregion
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }