refactor(frontend): some degree of api wrapping

This commit is contained in:
hanabi 2022-11-24 14:44:47 -05:00
parent f4a63fc95e
commit ba24815320
11 changed files with 365 additions and 222 deletions

View file

@ -1,5 +1,5 @@
import { atom } from "recoil";
import { MeUser } from "./types";
import { MeUser } from "./api-fetch";
export const userState = atom<MeUser | null>({
key: "userState",