refactor: rework assets fetching

This commit is contained in:
Pihkaal
2024-07-25 10:02:15 +02:00
parent a0be097c34
commit f8e3e20d9d
15 changed files with 239 additions and 281 deletions

View File

@@ -1,9 +1,7 @@
import { createContext } from "react";
import { type RootManifest } from "~/utils/types";
export const AppContext = createContext<
| {
rootManifest: RootManifest;
activeKitty: string;
setActiveKitty: (value: string) => void;
}