aboutsummaryrefslogtreecommitdiffstats
path: root/app/signin.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-11 00:08:35 +0000
committerMohamedBassem <me@mbassem.com>2024-03-11 00:08:58 +0000
commit31a8d46644606fe5778677d78c137decf5f5da45 (patch)
treed51799a2790e3a95830ac35acbe3c1a89825ca75 /app/signin.tsx
parentf14c6f43c386fde627d786cf695c63eb1feab09a (diff)
downloadkarakeep-31a8d46644606fe5778677d78c137decf5f5da45.tar.zst
prep: Setup nativecn-ui
Diffstat (limited to 'app/signin.tsx')
-rw-r--r--app/signin.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/signin.tsx b/app/signin.tsx
index fbb59698..641d1b97 100644
--- a/app/signin.tsx
+++ b/app/signin.tsx
@@ -1,4 +1,6 @@
import Logo from "@/components/Logo";
+import { Button } from "@/components/ui/Button";
+import { Input } from "@/components/ui/Input";
import { TextInput, View } from "react-native";
export default function Signin() {
@@ -6,7 +8,8 @@ export default function Signin() {
<View className="items-center justify-center h-full">
<Logo />
- <TextInput />
+ <Input />
+ <Button label="Sign In" />
</View>
);