2016-01-11 13:49:12 +01:00
|
|
|
// #docregion
|
|
|
|
// #docregion imports
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component } from '@angular/core';
|
2016-06-03 18:00:53 +02:00
|
|
|
import { Inject } from '@angular/core';
|
2016-08-09 17:38:25 +01:00
|
|
|
|
|
|
|
import { APP_CONFIG, AppConfig } from './app.config';
|
2016-01-11 13:49:12 +01:00
|
|
|
// #enddocregion imports
|
|
|
|
|
|
|
|
@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 {
|
2016-06-08 01:06:25 +02:00
|
|
|
title: string;
|
2016-01-11 13:49:12 +01:00
|
|
|
|
|
|
|
// #docregion ctor
|
2016-06-08 01:06:25 +02:00
|
|
|
constructor(@Inject(APP_CONFIG) config: AppConfig) {
|
2016-01-11 13:49:12 +01:00
|
|
|
this.title = config.title;
|
|
|
|
}
|
2016-06-03 11:16:46 -07:00
|
|
|
// #enddocregion ctor
|
2016-01-11 13:49:12 +01:00
|
|
|
}
|