CompUGE-Bench / src /app /components /body /tasks /tasks.component.html
Ahmad Shallouf
initialize
1bc149f
raw
history blame contribute delete
471 Bytes
<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>