27 lines
629 B
TypeScript
27 lines
629 B
TypeScript
import { SignedIn, SignedOut, useUser } from "@clerk/clerk-expo";
|
|
import { Link } from "expo-router";
|
|
import { Text } from "react-native";
|
|
import { SafeAreaView } from "react-native-safe-area-context";
|
|
|
|
const Home = () => {
|
|
const { user } = useUser();
|
|
|
|
return (
|
|
<SafeAreaView>
|
|
<SignedIn>
|
|
<Text>Hello {user?.emailAddresses[0].emailAddress}</Text>
|
|
</SignedIn>
|
|
<SignedOut>
|
|
<Link href="/sign-in">
|
|
<Text>Sign In</Text>
|
|
</Link>
|
|
<Link href="/sign-up">
|
|
<Text>Sign Up</Text>
|
|
</Link>
|
|
</SignedOut>
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default Home;
|