blob: d0e4a7dfb70f5274fb6c84b42b24d39eef2214a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { Text, View } from "react-native";
export default function ErrorPage() {
return (
<View className="flex-1 items-center justify-center gap-4">
<Text className="text-4xl">Error!</Text>
</View>
);
}
|