import { Text } from 'react-native';import { useStytchSession } from '@stytch/react-native-consumer';export const SessionInfo = () => { const session = useStytchSession(); return session ? <Text>Session ID: {session.session_id}</Text> : <Text>No active session</Text>;};
import { Text } from 'react-native';import { useStytchSession } from '@stytch/react-native-consumer';export const SessionInfo = () => { const session = useStytchSession(); return session ? <Text>Session ID: {session.session_id}</Text> : <Text>No active session</Text>;};
Hooks
useStytchSession
Access the current session state using the Stytch React Native SDK
import { Text } from 'react-native';import { useStytchSession } from '@stytch/react-native-consumer';export const SessionInfo = () => { const session = useStytchSession(); return session ? <Text>Session ID: {session.session_id}</Text> : <Text>No active session</Text>;};
To get the active Session for the currently signed in User, use the useStytchSession hook.If no User is signed in, the returned value will be null.In non-React environments, use the session.getSync method to get the Session.