aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/+not-found.tsx
blob: 466505b6d31c2ba3a700f45e26fb5f216a2e9a2d (plain) (blame)
1
2
3
4
5
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 />;
}