<SignIn/>
import { SignIn } from '@auth/clerk'SignInScreen.tsx
<SignIn
title="Sign in to FullProduct.dev"
subtitle="Welcome back! Please sign in to continue."
ssoProviders={['google', 'github']}
forceRedirectUrl={'/after-sign-in'}
enableEmailPassword={true}
/>- <SignIn />
Sign-in card for email/password and social logins.
Web uses the full Clerk @clerk/nextjs component; Expo uses our portable implementation with a smaller prop surface (same core flows).
Usage in Next.js
In Next.js, SignIn is the same component as @clerk/nextjs:
Usage in Expo apps
Native SignIn mirrors Clerk’s web UX with React Native primitives: social providers + email/password.
Use ssoProviders to choose which OAuth options appear.
Last updated on
