Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function useIsSignedIn(): { isSignedIn: boolean; };
{ isSignedIn: boolean; }
isSignedIn
boolean
function AuthGuard({ children }) { const { isSignedIn } = useIsSignedIn(); if (!isSignedIn) { return <Navigate to="/sign-in" />; } return children; }
Was this page helpful?