From fe927b44ad25b7b48d0fe255765c350b9858d0ef Mon Sep 17 00:00:00 2001 From: Jordan Date: Tue, 2 Jul 2024 08:34:57 -0700 Subject: [PATCH] did some more cleanup of the interface and UI interactions. --- app/app.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app/app.tsx diff --git a/app/app.tsx b/app/app.tsx new file mode 100644 index 0000000..3b7208b --- /dev/null +++ b/app/app.tsx @@ -0,0 +1,23 @@ +import { LinkingOptions, NavigationContainer } from "@react-navigation/native"; +import { Text } from "react-native"; +import * as Linking from "expo-linking"; +import Root from "./+html"; + +const prefix = Linking.createURL("/"); + +const linking : LinkingOptions = { + prefixes: [ + "tech.damngood.PliWould", prefix, + ], + config: { + screens: {} + }, +}; + +function App() { + return ( + Loading...}> + + + ); +} \ No newline at end of file