gpx.studio/website/src/lib/components/Data.svelte
2024-04-22 17:22:21 +02:00

9 lines
173 B
Svelte

<script lang="ts">
import GPX from './GPX.svelte';
import { fileCollection } from '$lib/stores';
</script>
{#each $fileCollection.files as file}
<GPX {file} />
{/each}