Skip to main content
React Native
    
    const MyComponent = () => {
    const client = useDynamicClient();
    const { auth } = client;

      return (
        <View>
          <Text>
            {auth.token ? 'You are logged in!' : 'Please log in to continue.'}
          </Text>
        </View>
      );
    };

    export default MyComponent;