export interface AdminModalProps { id: string; title: any; children: any; maxWidth?: string; onClose?: string; // e.g. "closeModal('myModalId')" } export const AdminModal = ({ id, title, children, maxWidth = "550px", onClose, }: AdminModalProps) => { return ( ); };