// #docregion import {Component, ViewChild} from 'angular2/core'; import {CountdownTimerComponent} from './countdown-timer.component'; @Component({ selector:'countdown-parent', template: `

Countdown to Liftoff

`, directives: [CountdownTimerComponent] }) export class CountdownParentComponent { @ViewChild(CountdownTimerComponent) private _timerComponent:CountdownTimerComponent; start(){ this._timerComponent.start(); } stop() { this._timerComponent.stop(); } }