8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { ParentComponent } from './parent.component';
|
||
|
|
||
|
@Component({selector: 'app-child', template: 'The child!'})
|
||
|
export class ChildComponent {
|
||
|
constructor(private parent: ParentComponent) {}
|
||
|
}
|