UNPKG

@auth0/auth0-react

Version:

Auth0 SDK for React Single Page Applications (SPA)

29 lines 1.14 kB
import React, { ComponentType } from 'react'; import { Auth0ContextInterface } from './auth0-context'; /** * Components wrapped in `withAuth0` will have an additional `auth0` prop */ export interface WithAuth0Props { auth0: Auth0ContextInterface; } /** * ```jsx * class MyComponent extends Component { * render() { * // Access the auth context from the `auth0` prop * const { user } = this.props.auth0; * return <div>Hello {user.name}!</div> * } * } * // Wrap your class component in withAuth0 * export default withAuth0(MyComponent); * ``` * * Wrap your class components in this Higher Order Component to give them access to the Auth0Context. * * Providing a context as the second argument allows you to configure the Auth0Provider the Auth0Context * should come from f you have multiple within your application. */ declare const withAuth0: <P extends WithAuth0Props>(Component: ComponentType<P>, context?: React.Context<Auth0ContextInterface<import("@auth0/auth0-spa-js").User>>) => ComponentType<Omit<P, keyof WithAuth0Props>>; export default withAuth0; //# sourceMappingURL=with-auth0.d.ts.map