Files
calorie-tracker/src/lib/router/routes/Weight/WWeekly.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>