aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.html
blob: 3a80e4eb0ef063bc76f44c2411f310066348763e (plain)
1
2
3
4
5
6
7
8
9
<mat-progress-bar *ngIf="!items" mode="indeterminate"></mat-progress-bar>

<mat-list>
  <mat-list-item *ngFor="let item of items">
    <mat-card>
        <span class="item-id">{{item.id}}</span> {{item.title}}
    </mat-card>
  </mat-list-item>
</mat-list>