Skip to content

Instantly share code, notes, and snippets.

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