UNPKG
vb-insight-ui
Version:
latest (1.0.0)
1.0.0
A bitcoin block explorer and AP customized for VB.
github.com/vaultbank/insight
vaultbank/insight
vb-insight-ui
/
app
/
src
/
components
/
transaction-list
/
transaction-list.html
15 lines
(12 loc)
•
285 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<
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
>