feat(frontend): incomplete port to next.js

This commit is contained in:
Sam 2022-08-16 00:01:54 +02:00
parent b9c30379ee
commit eec01dc070
50 changed files with 2874 additions and 3163 deletions

7
frontend/lib/state.ts Normal file
View file

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