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