aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/index.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-11 12:24:51 +0000
committerMohamedBassem <me@mbassem.com>2024-03-11 12:33:31 +0000
commitc87db85815d84ddf907d0a1d26226a2ab911181b (patch)
treec909031a7c9b525871fc8938e98c38da4741bde9 /packages/mobile/app/index.tsx
parent999ed977a588b2c3b2055f18db4218d77882a1a1 (diff)
downloadkarakeep-c87db85815d84ddf907d0a1d26226a2ab911181b.tar.zst
mobile: An ugly yet functional signin workflow
Diffstat (limited to 'packages/mobile/app/index.tsx')
-rw-r--r--packages/mobile/app/index.tsx7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/mobile/app/index.tsx b/packages/mobile/app/index.tsx
index e352ba54..557417d7 100644
--- a/packages/mobile/app/index.tsx
+++ b/packages/mobile/app/index.tsx
@@ -3,10 +3,9 @@ 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 className="flex-1 items-center justify-center gap-4 bg-white">
+ <Link href="signin">Signin</Link>
+ <Link href="dashboard">Dashboard</Link>
</View>
);
}