diff --git a/public/docs/_examples/toh-5/ts/app/app.module.1.ts b/public/docs/_examples/toh-5/ts/app/app.module.1.ts index 473ca08fb8..03c4e2d756 100644 --- a/public/docs/_examples/toh-5/ts/app/app.module.1.ts +++ b/public/docs/_examples/toh-5/ts/app/app.module.1.ts @@ -7,6 +7,8 @@ import { AppComponent } from './app.component'; import { HeroesComponent } from './heroes.component'; +import { HeroDetailComponent } from './hero-detail.component'; + import { HeroService } from './hero.service'; @NgModule({ @@ -16,7 +18,8 @@ import { HeroService } from './hero.service'; ], declarations: [ AppComponent, - HeroesComponent + HeroesComponent, + HeroDetailComponent ], providers: [ HeroService