This commit is contained in:
LucasLassiter
2022-05-11 14:56:59 -07:00
parent fb28b8380d
commit c20b6bea70
7 changed files with 371 additions and 579 deletions

3
lib/context.js Normal file
View File

@@ -0,0 +1,3 @@
import { createContext } from 'react';
export const UserContext = createContext({user: null, username: null});