2017-02-22 18:13:21 +00:00
|
|
|
// #docregion
|
2020-07-30 13:03:09 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2017-02-22 18:13:21 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2020-07-30 13:03:09 +03:00
|
|
|
import { FormsModule } from '@angular/forms';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2020-07-30 13:03:09 +03:00
|
|
|
import { AppComponent } from './app.component';
|
2018-05-31 12:02:50 -07:00
|
|
|
import { HeroTaxReturnComponent } from './hero-tax-return.component';
|
2020-07-30 13:03:09 +03:00
|
|
|
import { HeroesListComponent } from './heroes-list.component';
|
|
|
|
import { VillainsListComponent } from './villains-list.component';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
2018-05-31 12:02:50 -07:00
|
|
|
import { carComponents } from './car.components';
|
2017-02-22 18:13:21 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
FormsModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
carComponents,
|
|
|
|
HeroesListComponent,
|
|
|
|
HeroTaxReturnComponent,
|
|
|
|
VillainsListComponent
|
|
|
|
],
|
|
|
|
bootstrap: [ AppComponent ]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|
|
|
|
|