aboutsummaryrefslogtreecommitdiffstats
path: root/app/signin.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
committerMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
commitf14c6f43c386fde627d786cf695c63eb1feab09a (patch)
treee73ae8b7aa3c4da94aae2c2a25ae81fec69b2d08 /app/signin.tsx
parent3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c (diff)
downloadkarakeep-f14c6f43c386fde627d786cf695c63eb1feab09a.tar.zst
prep: Install lucide react native
Diffstat (limited to 'app/signin.tsx')
-rw-r--r--app/signin.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/signin.tsx b/app/signin.tsx
new file mode 100644
index 00000000..fbb59698
--- /dev/null
+++ b/app/signin.tsx
@@ -0,0 +1,13 @@
+import Logo from "@/components/Logo";
+import { TextInput, View } from "react-native";
+
+export default function Signin() {
+ return (
+ <View className="items-center justify-center h-full">
+ <Logo />
+
+ <TextInput />
+
+ </View>
+ );
+}