<SignedOut>
The <SignedOut> component offers authentication checks as a cross-cutting concern. Any child nodes wrapped by a <SignedOut> component will be rendered only if there's no User signed in to your application.
Example
import { SignedOut } from '@clerk/react-router'
export default function Home() {
  return (
    <>
      <SignedOut>
        <p>You are signed out.</p>
      </SignedOut>
      <p>This content is always visible.</p>
    </>
  )
}- Name
 treatPendingAsSignedOut?- Type
 boolean- Description
 A boolean that indicates whether to treat pending sessions as signed out. Defaults to
true.
Feedback
Last updated on