import { Modal, Button } from "react-bootstrap"; type Props = { isOpen: boolean; title: string; message: string; confirmLabel?: string; confirmVariant?: string; onConfirm: () => void; onClose: () => void; }; export default function ConfirmModal({ isOpen, title, message, confirmLabel = "Potvrdit", confirmVariant = "primary", onConfirm, onClose }: Readonly) { return ( {title} {message} ); }