import React from 'react'; import { Snackbar, Alert, Typography, Button } from '@mui/material'; import { Warning } from '@mui/icons-material'; import { FallbackNotificationProps } from '@/lib/interfaces/terminal'; export default function FallbackNotification({ show, reason, onClose, onRetry, }: FallbackNotificationProps) { return ( } action={ } onClose={onClose} sx={{ width: '100%', maxWidth: '600px' }} > Switched to Simple Mode {reason} ); }