Angular - Component Interaction
Given this child component:
And the parent template:
If
@Component({ selector: 'child-comp', template: '{{name}}' }) export class ChildComponent { @Input() name!: string; }And the parent template:
<child-comp [name]="parentName"></child-comp>
If
parentName is set to 'Angular', what will the child component display?