import React, { PropsWithChildren } from 'react'; import Modal, { ModalProps } from '@/Components/Modal'; ConfirmationModal.Content = function ConfirmationModalContent({ title, children, }: PropsWithChildren<{ title: string }>) { return (

{title}

{children}
); }; ConfirmationModal.Footer = function ConfirmationModalFooter({ children, }: PropsWithChildren>) { return (
{children}
); }; export default function ConfirmationModal({ children, ...props }: PropsWithChildren) { return {children}; }