aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/_layout.tsx2
-rw-r--r--app/signin.tsx5
2 files changed, 6 insertions, 1 deletions
diff --git a/app/_layout.tsx b/app/_layout.tsx
index 38ccb408..7403c6ff 100644
--- a/app/_layout.tsx
+++ b/app/_layout.tsx
@@ -1,3 +1,5 @@
+import "@/globals.css";
+
import { Slot } from "expo-router";
import { StatusBar } from "expo-status-bar";
import { View } from "react-native";
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>
);