Skip to main content
import { Text } from 'react-native';
import { useStytchSession } from '@stytch/react-native';

export const SessionInfo = () => {
  const { session } = useStytchSession();

  return session ? <Text>Session ID: {session.session_id}</Text> : <Text>No active session</Text>;
};
{
  "session": { ... },
  "fromCache": false
}
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.

Return Value

session
object | null
The current Session.
fromCache
boolean
Whether the Session data is from persistent storage.