mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ParentComponent} from './parent.component';
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: 'app-child',
|
|
template: 'The child!',
|
|
})
|
|
export class ChildComponent {
|
|
constructor(private parent: ParentComponent) {}
|
|
}
|