mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 23:53:25 +00:00
11 lines
241 B
Svelte
11 lines
241 B
Svelte
<script lang="ts">
|
|
import Map from '$lib/components/Map.svelte';
|
|
import Menu from '$lib/components/Menu.svelte';
|
|
</script>
|
|
|
|
<Menu />
|
|
<div class="flex flex-col w-screen h-screen">
|
|
<Map class="grow" />
|
|
<div class="h-1/3">Test</div>
|
|
</div>
|