import React from 'react' import { Alert, AlertTitle, Box, Button, Container, Typography, Paper, } from '@mui/material' import { Refresh as RefreshIcon, BugReport as BugReportIcon, } from '@mui/icons-material' interface ErrorFallbackProps { error: Error resetError: () => void } export default function ErrorFallback({ error, resetError, }: ErrorFallbackProps) { return ( Something went wrong An unexpected error occurred. Please try refreshing the page or contact support if the problem persists. Error Details {error.message} ) }