preparing stock module
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
12
frontend/src/routes/stock/Locations.svelte
Normal file
12
frontend/src/routes/stock/Locations.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user