This is the Parent HTML
<parent-component>
<child></child>
<button type="submit" [disabled]="!childForm.valid">
</parent-component>
This is Child HTML
<child>
<form #childform=ngform>
<input required type="text">
</form>
</child>
I need to access the childform status in the parent component