Add mock catalog

This commit is contained in:
ZXY101
2023-08-01 16:29:02 +02:00
parent 3c2199b06a
commit 995c6a98c5
20 changed files with 291 additions and 100 deletions

4
src/lib/catalog/index.ts Normal file
View File

@@ -0,0 +1,4 @@
import type { Manga } from "$lib/types/catalog";
import { writable } from "svelte/store";
export const currentManga = writable<Manga | undefined>(undefined);