9 lines
262 B
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> |