diff options
Diffstat (limited to 'app/index.tsx')
| -rw-r--r-- | app/index.tsx | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/app/index.tsx b/app/index.tsx index c6131fa0..e352ba54 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -1,20 +1,12 @@ -import { StatusBar } from "expo-status-bar"; -import { StyleSheet, Text, View } from "react-native"; +import { Link } from "expo-router"; +import { View } from "react-native"; export default function App() { return ( - <View style={styles.container}> - <Text>Open up App.tsx to start working on your app!</Text> - <StatusBar style="auto" /> + <View className="flex-1 items-center justify-center bg-white"> + <Link href="/signin" className=""> + Signin + </Link> </View> ); } - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: "#fff", - alignItems: "center", - justifyContent: "center", - }, -}); |
