Files
hipmi-mobile/app/+not-found.tsx
2025-06-23 10:18:59 +08:00

9 lines
173 B
TypeScript

import { Text, View } from "react-native";
export default function NotFoundScreen() {
return (
<View>
<Text>Not Found</Text>
</View>
)
}