import { WebViewModal } from "components/web-view"; type DeleteConfirmationProps = { isOpen: boolean; title: string; content: string | React.ReactNode; onCancel: () => void; onConfirm: () => void; }; export const DeleteConfirmation: React.FC = (props) => { const { isOpen, onCancel, onConfirm, title, content } = props; return (

{content}

); };