aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/error.tsx
blob: a6a180232b8cd0fdaf05e5c4103e6d076e2291ea (plain) (blame)
1
2
3
4
5
6
7
8
9
import { View, Text } from "react-native";

export default function Error() {
  return (
    <View className="flex-1 items-center justify-center gap-4">
      <Text className="text-4xl">Error!</Text>
    </View>
  );
}