1
0

Support for loading, deleting, tag joining, and

This commit is contained in:
2020-04-10 17:40:02 -04:00
parent ebae5a5801
commit a55c555138
28 changed files with 484 additions and 9 deletions

View 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>