Angular - Component Interaction
Why does this parent component not receive the event?
Child code:
<app-child (notifyEvent)="handleNotify($event)"></app-child>
Child code:
@Output() notify = new EventEmitter<string>();
