14 lines
317 B
TypeScript
Raw Normal View History

// #docregion
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
2016-09-01 17:24:15 +02:00
import { AppComponent } from './app.component';
@NgModule({
2016-09-01 17:24:15 +02:00
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
2016-09-01 17:24:15 +02:00
export class AppModule { }