5 lines
190 B
Plaintext
5 lines
190 B
Plaintext
component PaymentMethodList {
|
|
props { methods: array = [] }
|
|
view { <ul class="wrn-payment-methods">{#each methods as method}<li>{method.brand} ending {method.last4}</li>{/each}</ul> }
|
|
}
|