2016-02-02 14:39:34 +01:00
|
|
|
import {Component} from 'angular2/core';
|
|
|
|
import {HeroParentComponent} from './hero-parent.component';
|
|
|
|
import {NameParentComponent} from './name-parent.component';
|
|
|
|
import {VersionParentComponent} from './version-parent.component';
|
|
|
|
import {VoteTakerComponent} from './votetaker.component';
|
2016-03-07 11:50:14 -08:00
|
|
|
import {CountdownLocalVarParentComponent,
|
|
|
|
CountdownViewChildParentComponent} from './countdown-parent.component';
|
2016-02-02 14:39:34 +01:00
|
|
|
import {MissionControlComponent} from './missioncontrol.component';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app',
|
|
|
|
templateUrl: 'app/app.component.html',
|
|
|
|
directives: [
|
|
|
|
HeroParentComponent,
|
|
|
|
NameParentComponent,
|
|
|
|
VersionParentComponent,
|
|
|
|
VoteTakerComponent,
|
2016-03-07 11:50:14 -08:00
|
|
|
CountdownLocalVarParentComponent,
|
|
|
|
CountdownViewChildParentComponent,
|
2016-02-02 14:39:34 +01:00
|
|
|
MissionControlComponent
|
|
|
|
]
|
|
|
|
})
|
2016-03-07 11:50:14 -08:00
|
|
|
export class AppComponent { }
|