Files
gpx.studio/website/src/lib/components/GPXMapLayers.svelte
2024-04-24 19:32:55 +02:00

10 lines
197 B
Svelte

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