Some initial work

This commit is contained in:
2023-12-18 10:12:23 +00:00
parent 0a99b9f3bf
commit 82e8d97a33
6 changed files with 1099 additions and 166 deletions
+4
View File
@@ -0,0 +1,4 @@
export const fetcher = (
input: string | URL | globalThis.Request,
init?: RequestInit,
) => fetch(input, init).then(res => res.json())