Files
server/core/src/App.vue
T
Sebastian 93d32d2a9f fix: theming
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-07 22:49:51 -04:00

10 lines
222 B
Vue

<template>
<RouterView></RouterView>
<SharedSnackbar />
</template>
<script setup lang="ts">
import { RouterView } from 'vue-router';
import SharedSnackbar from '@KTXC/components/shared/SharedSnackbar.vue';
</script>