5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({selector: 'app-parent', template: '<app-child></app-child>'})
|
||
|
export class ParentComponent {}
|