21 lines
420 B
TypeScript
21 lines
420 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
import { HEROES } from './hero';
|
|
|
|
@Component({
|
|
selector: 'hero-parent',
|
|
template: `
|
|
<h2>{{master}} controls {{heroes.length}} heroes</h2>
|
|
<hero-child *ngFor="let hero of heroes"
|
|
[hero]="hero"
|
|
[master]="master">
|
|
</hero-child>
|
|
`
|
|
})
|
|
export class HeroParentComponent {
|
|
heroes = HEROES;
|
|
master: string = 'Master';
|
|
}
|
|
// #enddocregion
|