preparing stock module

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-10-12 19:16:50 +02:00
parent 0bbb6157e1
commit fea21872e3
7 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<script>
let { locations } = $props();
</script>
<ul>
{#each Object.entries(locations) as [k,v]}
<li>
{k}
<svelte:self locations={v} />
</li>
{/each}
</ul>