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/signin.tsx | |
| parent | f14c6f43c386fde627d786cf695c63eb1feab09a (diff) | |
| download | karakeep-31a8d46644606fe5778677d78c137decf5f5da45.tar.zst | |
prep: Setup nativecn-ui
Diffstat (limited to 'app/signin.tsx')
| -rw-r--r-- | app/signin.tsx | 5 |
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> ); |
