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

9 lines (8 loc) 273 B
import React, { ReactNode } from "react"; import AuthManager from "./AuthManager"; interface IProps { authManager: AuthManager; children: ReactNode; } declare function AuthProvider({ authManager, children }: IProps): React.JSX.Element; export default AuthProvider;