<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.
- Name
treatPendingAsSignedOut?
- Description
import { SignedIn } from '@clerk/clerk-expo'
import { Text, View } from 'react-native'
export default function Screen() {
return (
<View>
<SignedIn>
<Text>You are signed in</Text>
</SignedIn>
<Text>This content is always visible.</Text>
</View>
)
}
Feedback
Last updated on