web-remote/src/app/components/service/service.component.html

4 lines
208 B
HTML
Raw Normal View History

2019-11-07 18:02:26 +00:00
<mat-card *ngFor="let item of items; let counter = index;" (click)="onItemSelected(counter)" [tabindex]="counter" class="service-item">
<mat-icon>{{ getIcon(item) }}</mat-icon> {{ item.title }}
</mat-card>