First commit

This commit is contained in:
space-nuko
2023-04-04 15:10:09 -05:00
commit 546b980c8d
27 changed files with 4799 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<script lang="ts">
import { onMount } from "svelte";
import ComfyApp from "./ComfyApp";
let app: ComfyApp = undefined;
onMount(async () => {
app = new ComfyApp();
await app.setup();
(window as any).app = app;
})
</script>
<div class="container">
<canvas id="graph-canvas" tabIndex="1" />
</div>
<style>
.container {
width: 100%;
height: 100%;
}
</style>