add payment route + additional starting blocks

This commit is contained in:
2023-07-24 22:57:12 +02:00
parent a64b3b1697
commit c6fb41de6d
11 changed files with 215 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
<script>
export let data;
console.log("DATA:", data)
console.log("payments:", data.payments)
import PaymentCard from "$lib/components/PaymentCard.svelte";
</script>
{#if data.payments}
{#each data.payments as payment}
<PaymentCard {payment}></PaymentCard>
{/each}
{/if}