Implement some sort of very basic display

This commit is contained in:
2024-08-19 11:55:38 +02:00
parent 46b50b6bd3
commit f96c0ba8b5
5 changed files with 68 additions and 19 deletions

View File

@@ -1,7 +1,12 @@
<script lang="ts">
import Payments from "$lib/components/Payments.svelte";
import { lastMonthPaymentsStore } from "$lib/store/lastMonthPaymentsStore";
import { thisMonthPaymentsStore } from "$lib/store/thisMonthPaymentsStore";
</script>
<template>
Hello, world
<Payments payments={$thisMonthPaymentsStore} />
<Payments payments={$lastMonthPaymentsStore} />
</template>