9 lines
278 B
Svelte
9 lines
278 B
Svelte
<script lang="ts">
|
|
import { weeklyWeightStore } from '$lib/store/weight/weeklyWeightStore'
|
|
import AggregatedWeightTable from '$components/Weight/Aggregated/AggregatedWeightTable.svelte'
|
|
</script>
|
|
|
|
<template>
|
|
<AggregatedWeightTable items="{$weeklyWeightStore}" />
|
|
</template>
|