Files
calorie-counter/frontend/src/lib/router/routes/Weight/WMonthly.svelte
2024-11-08 10:36:24 +01:00

9 lines
281 B
Svelte

<script lang="ts">
import { monthlyWeightStore } from "$lib/store/Weight/monthlyWeightStore";
import AggregatedWeightTable from "$components/Weight/Aggregated/AggregatedWeightTable.svelte";
</script>
<template>
<AggregatedWeightTable items={$monthlyWeightStore} />
</template>