import { View } from "react-native"; import { Text } from "@/components/ui/Text"; import { Button } from "./ui/Button"; export default function FullPageError({ error, onRetry, }: { error: string; onRetry: () => void; }) { return ( Something Went Wrong {error} ); }