1
0
This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
comment-system/src/app/comments-list/comments-list.component.html

9 lines
262 B
HTML

<section class="comment-list" *ngIf="list$ | async as list; else loading;">
<ng-container *ngFor="let item of list">
<app-comment-card [data]="item"></app-comment-card>
</ng-container>
</section>
<ng-template #loading>
<p>Loading...</p>
</ng-template>