working sign up and sign in as far as I know

This commit is contained in:
talksik
2022-03-18 10:21:38 -04:00
parent 3488278d2d
commit aca9c5a12d
9 changed files with 79 additions and 30 deletions
@@ -0,0 +1,10 @@
import { atom } from "recoil";
export const $authTokens = atom<{
accessToken: string;
refreshToken: string;
idToken: string;
}>({
key: "AUTH_TOKENS", // unique ID (with respect to other atoms/selectors)
default: null, // default value (aka initial value)
});