Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Created December 14, 2023 21:09
Show Gist options
  • Save alperbayram/199e4b5532e098d4fd5b7c5808a4ccab to your computer and use it in GitHub Desktop.
Save alperbayram/199e4b5532e098d4fd5b7c5808a4ccab to your computer and use it in GitHub Desktop.
//app/(tabs)/profile.tsx
import { View, Text } from "react-native";
import { styles } from "../../styles/styles";
import { Link } from "expo-router";
export default function Page() {
return (
<View style={styles.container}>
<View>
<Text style={styles.subtitle}>app/(tabs)/profile.tsx</Text>
</View>
<Link href="/">
<Text style={styles.linktitle}>logout</Text>
</Link>
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment