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