How do i give the showProduct:boolean = false; value to the app-product html selector so it will be false at start?
showProduct:boolean = false;
<button (click)="showProduct=!showProduct">Show Product</button>
<div *ngIf="!showProduct">
<app-product></app-product>
</div>