diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/_layout.tsx | 1 | ||||
-rw-r--r-- | app/index.tsx | 11 |
2 files changed, 10 insertions, 2 deletions
diff --git a/app/_layout.tsx b/app/_layout.tsx index 6974539..2b395c7 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -1,3 +1,4 @@ +import "../polyfills"; // import { // DarkTheme, // DefaultTheme, diff --git a/app/index.tsx b/app/index.tsx index 4d13c90..c49525b 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -14,6 +14,7 @@ import ScreenWrapper from "@/components/ScreenWrapper"; // import { ROUTES } from "@/constants/routes"; // import { Passkee } from "@/components/auth/Auth"; import { type ColorScheme, lightColors } from "@/constants"; +import Client from "@/components/Client"; import { ShipForm } from "@/components/login/ShipCredsForm"; // // import { useSettingsStore } from "../store/useSettingsStore"; @@ -129,8 +130,11 @@ import { ShipForm } from "@/components/login/ShipCredsForm"; // // This component will be rendered at build-time and never re-rendered in production. // render: "static", // }; - +///@ts-ignore +import * as rs from "readable-stream"; export default async function Index() { + console.log({ rs }); + async function handleSubmit() { // } @@ -148,7 +152,10 @@ export default async function Index() { Create a passkey for easy and secure access to your Urbit wallet </Text> </View> - <ShipForm /> + <Client> + <Text>wtf</Text> + <ShipForm /> + </Client> <View style={styles.bottomSection}> <Text style={styles.infoText}> |