Untitled

 avatar
unknown
plain_text
2 years ago
210 B
86
Indexable
export class HeroesComponent {
  /*hero: Hero = {
    id: 1,
    name: 'Windstorm'
  };*/
  heroes = HEROES;
  selectedHero?: Hero;

  onSelect(hero: Hero): void {
    this.selectedHero = hero;
  }
}
Editor is loading...