2015-11-21 11:23:40 -08:00
|
|
|
// #docregion
|
2016-04-27 11:28:22 -07:00
|
|
|
import {Component} from '@angular/core';
|
2015-11-21 11:23:40 -08:00
|
|
|
|
|
|
|
import {AfterContentParentComponent} from './after-content.component';
|
|
|
|
import {AfterViewParentComponent} from './after-view.component';
|
|
|
|
import {CounterParentComponent} from './counter.component';
|
2016-01-23 18:21:09 +00:00
|
|
|
import {DoCheckParentComponent} from './do-check.component';
|
2015-11-21 11:23:40 -08:00
|
|
|
import {OnChangesParentComponent} from './on-changes.component';
|
|
|
|
import {PeekABooParentComponent} from './peek-a-boo-parent.component';
|
|
|
|
import {SpyParentComponent} from './spy.component';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
2016-01-23 18:21:09 +00:00
|
|
|
templateUrl: 'app/app.component.html',
|
2015-11-21 11:23:40 -08:00
|
|
|
directives: [
|
|
|
|
AfterContentParentComponent,
|
|
|
|
AfterViewParentComponent,
|
2016-01-23 18:21:09 +00:00
|
|
|
CounterParentComponent,
|
|
|
|
DoCheckParentComponent,
|
2015-11-21 11:23:40 -08:00
|
|
|
OnChangesParentComponent,
|
|
|
|
PeekABooParentComponent,
|
|
|
|
SpyParentComponent,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AppComponent {
|
|
|
|
}
|