mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-01 08:12:32 +00:00
10 lines
197 B
Svelte
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}
|