Parent.component.html

<fieldset>
  <legend>
    <h1>Parent Component</h1>
  </legend>

  <p>Parent Input</p>
  <input type="text" [(ngModel)]="inputText" />

  <p>Received message from child: {{ receivedMessage }}</p>

  <app-child
    [parentInput]="inputText"
    (childOutput)="onMessageReceived($event)"
  ></app-child>
</fieldset>