// frontend/src/components/ConfirmationModal.tsx import { Modal, Box, Typography, Button, Stack } from '@mui/material'; const style = { position: 'absolute' as 'absolute', top: '40%', left: '50%', transform: 'translate(-50%, -50%)', width: 400, bgcolor: 'background.paper', boxShadow: 24, p: 4, borderRadius: 1, }; interface Props { open: boolean; onClose: () => void; onConfirm: () => void; title: string; message: string; } const ConfirmationModal = ({ open, onClose, onConfirm, title, message }: Props) => { return ( {title} {message} ); }; export default ConfirmationModal;