15 lines
285 B
HTML
15 lines
285 B
HTML
<div *ngIf="loading">
|
|
<ion-spinner name="crescent"></ion-spinner>
|
|
</div>
|
|
|
|
|
|
<div *ngIf="!loading">
|
|
<ion-grid>
|
|
<ion-row *ngFor="let tx of transactions.txs">
|
|
<ion-col col-12>
|
|
<transaction [tx]="tx"></transaction>
|
|
</ion-col>
|
|
</ion-row>
|
|
</ion-grid>
|
|
</div>
|