<SignedIn>
Overview
The <SignedIn> component offers authentication checks as a cross-cutting concern. Any children components wrapped by a <SignedIn> component will be rendered only if there's a user with an active session signed in your application.
import { SignedIn } from '@clerk/nextjs'
export default function Page() {
  return (
    <>
      <SignedIn>
        <div>You are signed in.</div>
      </SignedIn>
      <p>This content is always visible.</p>
    </>
  )
}- Name
- treatPendingAsSignedOut?
- Type
- boolean
- Description
- A boolean that indicates whether to treat as signed out. Defaults to - true.
 
Feedback
Last updated on