Angular - Component Interaction
Given this child component code:
What will the parent component receive when it listens to (notify)?
@Output() notify = new EventEmitter<string>();
sendMessage() {
this.notify.emit('Hello');
}What will the parent component receive when it listens to (notify)?
