2016-01-11 13:49:12 +01:00
|
|
|
// Early versions
|
|
|
|
|
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2016-01-11 13:49:12 +01:00
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
|
|
|
template: `
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
<my-car></my-car>
|
|
|
|
<my-heroes></my-heroes>
|
2016-08-09 17:38:25 +01:00
|
|
|
`
|
2016-01-11 13:49:12 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
export class AppComponent {
|
|
|
|
title = 'Dependency Injection';
|
|
|
|
}
|