diff options
Diffstat (limited to 'packages/mobile/app/index.tsx')
| -rw-r--r-- | packages/mobile/app/index.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/mobile/app/index.tsx b/packages/mobile/app/index.tsx new file mode 100644 index 00000000..e352ba54 --- /dev/null +++ b/packages/mobile/app/index.tsx @@ -0,0 +1,12 @@ +import { Link } from "expo-router"; +import { View } from "react-native"; + +export default function App() { + return ( + <View className="flex-1 items-center justify-center bg-white"> + <Link href="/signin" className=""> + Signin + </Link> + </View> + ); +} |
