Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.32 KB | None | 0 0
  1. <div class="frame">
  2.  
  3.   <div class="display">
  4.     <div *ngIf="display == ''" > EMPTY DISPLAY </div>
  5.     <div> {{display}} </div>
  6.   </div>
  7.  
  8.   <div class="grid-container">
  9.     <button type="button" *ngFor="let b of btns" [ngClass]="b.nclass"
  10.            (click)="onBtnClick(b)"> {{b.label}}
  11.     </button>
  12.   </div>
  13.  
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement