import { createContext } from "react"; interface LoggedInPageContextProps { userId: string; } export const LoggedInPageContext = createContext(null);