color changes, client, realization time

This commit is contained in:
2025-01-04 14:57:53 +01:00
parent 948dbbca61
commit c3f306575f
15 changed files with 247 additions and 144 deletions

View File

@ -2,7 +2,8 @@
import useSWR from 'swr'
export const fetcher = (...args) => fetch(...args).then(res => res.json()) // @ts-ignore
// @ts-expect-error ignore ...args type
export const fetcher = (...args) => fetch(...args).then(res => res.json())
export function useUser (id: number) {