import imgSrc from '@/assets/generic-error.png'; import { Button, Container, Stack, Typography } from '@mui/material'; import { useCallback } from 'react'; function GenericErrorPage() { const onReload = useCallback(() => location.reload(), []); return ( Error Ops! An error occurred... We're fixing the problem. Please try again later. ); } export { GenericErrorPage };