<div class="m-t-sm">
<app-button [btnText]="'ADD USER'" (click)="!show" [btnType]="'text'" [btnColor]='"submit-btn-color"'></app-button>
</div>
Once the "add user" button is clicked, the following div should be displayed. Although this code functions properly, I am interested in exploring alternative methods to achieve the same outcome.
<div class="selected-code-box" *ngIf="show">
<div class="row no-margins">
<div class="col-md-4"></div> ...//code goes..
</div>