React Native
Copy
Ask AI
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;