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