Overview
The<SignedOut /> component conditionally renders its children only when a user is not authenticated. It’s perfect for showing sign-in prompts, marketing content, or public information to unauthenticated visitors.
Basic Usage
Props
The content to render when the user is not signed in.
What it includes
- Conditional Rendering - Only shows children when user is not authenticated
- Loading Handling - Hides content while authentication is loading
- Performance Optimized - Minimal re-renders, only updates when auth state changes
- SEO Friendly - Unauthenticated content can be statically rendered
Related Components
<SignedIn />- Conditional rendering for authenticated users<SignInForm />- Authentication form<SignUpForm />- Registration form
