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