diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-11 00:08:35 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-11 00:08:58 +0000 |
| commit | 31a8d46644606fe5778677d78c137decf5f5da45 (patch) | |
| tree | d51799a2790e3a95830ac35acbe3c1a89825ca75 /app | |
| parent | f14c6f43c386fde627d786cf695c63eb1feab09a (diff) | |
| download | karakeep-31a8d46644606fe5778677d78c137decf5f5da45.tar.zst | |
prep: Setup nativecn-ui
Diffstat (limited to '')
| -rw-r--r-- | app/_layout.tsx | 2 | ||||
| -rw-r--r-- | app/signin.tsx | 5 |
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> ); |
