Ubuntu Pastebin

Paste from ashwin at Thu, 21 Dec 2017 11:37:16 +0000

Download as text
1
2
3
4
5
6
7
8
9
<mat-grid-list cols="4" rowHeight="100px">
  <mat-grid-tile
      *ngFor="let tile of tiles"
      [colspan]="tile.cols"
      [rowspan]="tile.rows"
      [style.background]="tile.color">
    {{tile.text}}
  </mat-grid-tile>
</mat-grid-list>
Download as text