// Early versions // #docregion import { Component } from '@angular/core'; import { CarComponent } from './car/car.component'; import { HeroesComponent } from './heroes/heroes.component.1'; @Component({ selector: 'my-app', template: `

{{title}}

`, directives: [CarComponent, HeroesComponent] }) export class AppComponent { title = 'Dependency Injection'; }