import React, { PropsWithChildren } from 'react'; import Modal, { ModalProps } from '@/Components/Modal'; DialogModal.Content = function DialogModalContent({ title, children, }: PropsWithChildren<{ title: string }>) { return (
{title}
{children}
); }; DialogModal.Footer = function DialogModalFooter({ children, }: PropsWithChildren>) { return (
{children}
); }; export default function DialogModal({ children, ...modalProps }: PropsWithChildren) { return {children}; }