9 lines
281 B
Svelte
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>
|