We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can access React Devise config and also the AuthLinks component in your components by using withAuth like so:
AuthLinks
withAuth
import React from 'react'; import {withAuth} from 'react-devise'; const Home = ({auth: {AuthLinks}}) => { return ( <div> <h1>My Page</h1> <AuthLinks /> </div> ); }; export default withAuth(Home);
NEXT: Middleware for Clients >