Files
2024-08-28 15:35:35 +02:00

12 lines
216 B
Vue

<script setup lang="ts">
import Labyrinth from './components/Labyrinth.vue';
import Offcanvas from './components/Offcanvas.vue';
</script>
<template>
<div>
<Labyrinth />
<Offcanvas />
</div>
</template>