Angular - Component Interaction
What is wrong with this Angular code for passing data from parent to child?
Parent template:
<child-comp data="parentData"></child-comp>
Child component TS:
@Input() data: string;
