import type { FC } from 'react'; import WarningIcon from '@mui/icons-material/Warning'; import { Box, Paper, Typography } from '@mui/material'; interface ApplicationErrorProps { message?: string; } const ApplicationError: FC = ({ message }) => ( Application Error Failed to configure the application, please refresh to try again. {message && ( {message} )} ); export default ApplicationError;