Spaces:
Sleeping
Sleeping
File size: 471 Bytes
1bc149f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<mat-card>
<mat-tab-group>
<mat-tab
*ngFor="let task of tasks | async"
[label]="task.name"
>
<br>
<button
mat-raised-button
color="primary"
routerLink="/tasks/{{task}}"
style="width: 100%;"
>
Full Task Page
</button>
<br>
<app-about
whatAbout="{{task.name}}"
></app-about>
</mat-tab>
</mat-tab-group>
</mat-card>
|