1.  
  2. import { NgModule } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. import { FormsModule } from '@angular/forms';
  5. import { HeroListComponent } from './hero-list/hero-list.component';
  6. import { HeroDetailComponent } from './hero-detail/hero-detail.component';
  7. import { HeroesRoutingModule } from './heroes-routing.module';
  8. @NgModule({
  9. imports: [
  10. CommonModule,
  11. FormsModule,
  12. HeroesRoutingModule
  13. ],
  14. declarations: [
  15. HeroListComponent,
  16. HeroDetailComponent
  17. ]
  18. })
  19. export class HeroesModule {}
  20.