Files
component-party/content/7-webapp-features/1-fetch-data/angular/users.component.html
2022-05-22 11:17:39 +02:00

16 lines
446 B
HTML

<ul *ngIf="users$ | async as users; else loadingOrError">
<li *ngFor="let user of users">
<img [src]="user.picture.thumbnail" alt="user">
<p>{{user.name.first}} {{user.name.last}}</p>
</li>
</ul>
<ng-template #loadingOrError>
<p *ngIf="userService.error$ | async; else loading">
An error occured while fetching users
</p>
</ng-template>
<ng-template #loading>
Fetching users...
</ng-template>