Skip to content
Snippets Groups Projects
OAuthContext.ts 270 B
Newer Older
import { IOAuthState } from "./OAuthState";
import { createContext } from "react";

export interface OAuthContextProps extends IOAuthState {
  signinPopup(): void;
  logout(): void;
}

export const OAuthContext = createContext<OAuthContextProps | undefined>(undefined);