Support for loading, deleting, tag joining, and
This commit is contained in:
9
src/app/comments-list/comments-list.component.html
Normal file
9
src/app/comments-list/comments-list.component.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user