import { Box, Typography } from "@mui/material"; import { FallbackProps } from "react-error-boundary"; type Props = Partial; export const ApologyPage = ({ error }: Props) => { let message = error?.message ?? error.response?.data ?? "Something went wrong"; return ( {message} ); };