aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/+not-found.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-13 16:35:17 +0000
committerMohamedBassem <me@mbassem.com>2024-03-13 16:35:17 +0000
commita80869cee9e841c319e603a51daa9cd34d1e83e8 (patch)
tree28baa59eea45ec846ea29ecaae8db9813143d1d9 /packages/mobile/app/+not-found.tsx
parente40a18132119a90d9b4bf035ecf741b930342688 (diff)
downloadkarakeep-a80869cee9e841c319e603a51daa9cd34d1e83e8.tar.zst
mobile: Add support for sharing text to the app
Diffstat (limited to 'packages/mobile/app/+not-found.tsx')
-rw-r--r--packages/mobile/app/+not-found.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/mobile/app/+not-found.tsx b/packages/mobile/app/+not-found.tsx
new file mode 100644
index 00000000..466505b6
--- /dev/null
+++ b/packages/mobile/app/+not-found.tsx
@@ -0,0 +1,6 @@
+import { View } from "react-native";
+
+// This is kinda important given that the sharing modal always resolve to an unknown route
+export default function NotFound() {
+ return <View />;
+}