// #docplaster // #docregion import { Component } from '@angular/core'; // #enddocregion import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; // #docregion class HeroComponent { ngOnInit() { this.name = 'Windstorm'; } } // #enddocregion HeroComponent.annotations = [ new Component({ selector: 'hero-lifecycle', template: `

Hero: {{name}}

` }) ]; export class HeroesLifecycleModule { } HeroesLifecycleModule.annotations = [ new NgModule({ imports: [ BrowserModule ], declarations: [ HeroComponent ], bootstrap: [ HeroComponent ] }) ];