UNPKG

@shane32/msoauth

Version:

A React library for Azure AD authentication with PKCE (Proof Key for Code Exchange) flow support. This library provides a secure and easy-to-use solution for implementing Azure AD authentication in React applications, with support for both API and Microso

8 lines (7 loc) 219 B
import { createContext } from "react"; /** * Context for multiple auth managers * Provides access to all configured auth managers */ var AuthManagersContext = createContext(null); export default AuthManagersContext;