blob: 2ca227a459cb592d91fbd0ad5a283459859bffbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { View, Text } 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>
);
}
|