Skip to content
Snippets Groups Projects
OAuthContext.ts 252 B
Newer Older
  • Learn to ignore specific revisions
  • import { IOAuthState } from "./OAuthState";
    import { createContext } from "react";
    
    export interface OAuthContextProps extends IOAuthState {
      signinPopup(): void;
    }
    
    export const OAuthContext = createContext<OAuthContextProps | undefined>(undefined);