UNPKG

brat-frontend-editor

Version:
20 lines (15 loc) 280 B
import { Component } from '@angular/core'; @Component({ selector: 'detail', template: ` <h1>Hello from Detail</h1> <router-outlet></router-outlet> ` }) export class Detail { constructor() { } ngOnInit() { console.log('hello `Detail` component'); } }