barker/bookie/src/app/sales/menu-categories/menu-categories.component.html

24 lines
591 B
HTML

<mat-card>
<mat-card-content fxLayout="row wrap" fxLayoutGap="grid 20px">
<mat-card
fxLayout="column"
class="square-button warn"
matRipple
[routerLink]="['../']"
queryParamsHandling="preserve"
>
<h3 class="item-name">Back</h3>
</mat-card>
<mat-card
fxLayout="column"
class="square-button"
matRipple
*ngFor="let item of list"
[routerLink]="['../products', item.id]"
queryParamsHandling="preserve"
>
<h3 class="item-name">{{ item.name }}</h3>
</mat-card>
</mat-card-content>
</mat-card>