5 lines
210 B
Plaintext
5 lines
210 B
Plaintext
component PaymentHistory {
|
|
props { payments: array = [] }
|
|
view { <ol class="wrn-payment-history">{#each payments as payment}<li>{payment.currency} {payment.amount} — {payment.status}</li>{/each}</ol> }
|
|
}
|