Angular - Component Interaction
Given this template snippet:
What happens when the button is clicked?
<input #myInput type="text"> <button (click)="myInput.focus()">Focus</button>
What happens when the button is clicked?
