Parent.component.html

<fieldset>

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

  <p>Received message from child: {{ child1.message }}</p>

  <app-child #child1></app-child>

</fieldset>