// #docplaster // #docregion final import { Component } from '@angular/core'; import { Hero } from './hero'; @Component({ selector: 'my-app', template: `

{{title}}

My favorite hero is: {{myHero.name}}

Heroes:

// #docregion message

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]; }