2025-01-29 11:19:03 -05:00

20 lines
395 B
Svelte

<script>
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
import { ThemeWrapper, updateTheme } from '@kksh/svelte5';
import { onMount } from 'svelte';
import { ui } from '@kksh/api/ui/iframe';
onMount(() => {
ui.registerDragRegion();
ui.getTheme().then((theme) => {
updateTheme(theme);
});
});
</script>
<ModeWatcher />
<ThemeWrapper>
<slot />
</ThemeWrapper>