2022-08-15 15:01:54 -07:00
|
|
|
import { atom } from "recoil";
|
2022-11-24 11:44:47 -08:00
|
|
|
import { MeUser } from "./api-fetch";
|
2022-08-15 15:01:54 -07:00
|
|
|
|
|
|
|
export const userState = atom<MeUser | null>({
|
|
|
|
key: "userState",
|
|
|
|
default: null,
|
|
|
|
});
|
2022-12-22 06:43:10 -08:00
|
|
|
|
|
|
|
export const themeState = atom<boolean>({
|
|
|
|
key: "themeState",
|
|
|
|
default: false,
|
|
|
|
});
|