aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/error.tsx
blob: 6e975306becf426378c8b7126305c70bf8329d9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { View } from "react-native";
import { Text } from "@/components/ui/Text";

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