import { Component } from '@angular/core'; @Component({ selector: 'detail', template: `

Hello from Detail

` }) export class Detail { constructor() { } ngOnInit() { console.log('hello `Detail` component'); } }