// #docplaster // #docregion final import { Component } from '@angular/core'; import { Hero } from './hero'; @Component({ selector: 'my-app', template: `
Heroes:
3">There are many heroes!
// #enddocregion message ` }) export class AppComponent { title = 'Tour of Heroes'; heroes = [ new Hero(1, 'Windstorm'), new Hero(13, 'Bombasto'), new Hero(15, 'Magneta'), new Hero(20, 'Tornado') ]; myHero = this.heroes[0]; }