2024-04-05 17:53:42 +02:00
|
|
|
<script lang="ts">
|
2024-04-08 14:52:13 +02:00
|
|
|
import Map from '$lib/components/Map.svelte';
|
2024-04-08 17:12:39 +02:00
|
|
|
import Menu from '$lib/components/Menu.svelte';
|
2024-04-09 18:46:01 +02:00
|
|
|
import Toolbar from '$lib/components/Toolbar.svelte';
|
2024-04-05 17:53:42 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="flex flex-col w-screen h-screen">
|
2024-04-09 17:37:23 +02:00
|
|
|
<div class="grow relative">
|
|
|
|
<Menu />
|
2024-04-09 18:46:01 +02:00
|
|
|
<Toolbar />
|
2024-04-09 17:37:23 +02:00
|
|
|
<Map class="h-full" />
|
|
|
|
</div>
|
2024-04-12 13:43:51 +02:00
|
|
|
<div class="h-12">Test</div>
|
2024-04-05 17:53:42 +02:00
|
|
|
</div>
|