Files
ComfyBox/src/App.svelte
space-nuko 967989494c window object does weird things, rename root ID
when used with (window as any).app, it uses the element with id #app instead
2023-05-17 21:31:37 -05:00

16 lines
338 B
Svelte

<script lang="ts">
import ComfyApp from "$lib/components/ComfyApp.svelte"
import { default as ComfyAppState } from "$lib/components/ComfyApp"
import "@litegraph-ts/core/css/litegraph.css";
import "./scss/global.scss";
import { onMount } from 'svelte';
export let app: ComfyAppState;
</script>
<ComfyApp {app}/>
<style>
</style>