// #docregion
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'hero-lifecycle',
template: `
Hero: {{name}}
`
})
export class HeroComponent implements OnInit {
name: string;
ngOnInit() {
// todo: fetch from server async
setTimeout(() => this.name = 'Windstorm', 0);
}
}