Angular - Component Interaction
Given a parent component that listens to a child's event like this:
What happens when the child calls
<app-child (notify)="onNotify($event)"></app-child>What happens when the child calls
this.notify.emit('hello')?