barker/bookie/src/app/running-tables/running-tables.component.html

10 lines
349 B
HTML

<mat-card>
<mat-card-title-group>
<mat-card-title>Running Tables</mat-card-title>
</mat-card-title-group>
<mat-card-content fxLayout="row wrap" fxLayoutGap="grid 20px">
<button mat-raised-button class="square-button"
*ngFor="let table of list" [routerLink]="[table.id]">{{table.name}}</button>
</mat-card-content>
</mat-card>