interface ModalProps { title: string; onClose: () => void; children: React.ReactNode; } export default function Modal({ title, onClose, children }: ModalProps) { return (