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

9 lines
278 B
Svelte

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