import { Component } from '@angular/core';
@Component({
selector: 'my-app-ctor',
template: `
{{title}} [Ctor version]
My favorite hero is: {{myHero}}
`
})
// #docregion class
export class AppCtorComponent {
title: string;
myHero: string;
constructor() {
this.title = 'Tour of Heroes';
this.myHero = 'Windstorm';
}
}