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

5
src/routes/+page.svelte Normal file
View File

@@ -0,0 +1,5 @@
<script lang="ts">
import ComfyApp from "$lib/components/ComfyApp.svelte"
</script>
<ComfyApp/>

16
src/routes/+page.ts Normal file
View File

@@ -0,0 +1,16 @@
import type { PageLoad } from "./$types"
// `PageServerData` will contain everything from the layouts and also the
// `data` from the `+page.server.ts` file.
type OutputProps = {}
// We have imported the `PageLoad` type from the relative `./$types` folder that
// is hidden in the generated `.svelte-kit` folder. Those generated types
// contain a `PageLoad` type with a `params` and `data` object that matches our route.
// You need to run the dev server or `svelte-kit sync` to generate them.
export const load: PageLoad<OutputProps> = async ({
params,
data,
}) => {
return {}
}