import type { ReactNode } from 'react' import { Transition, TransitionChild } from '@headlessui/react' import classNames from '@/utils/classnames' type ContentDialogProps = { className?: string show: boolean onClose?: () => void children: ReactNode } const ContentDialog = ({ className, show, onClose, children, }: ContentDialogProps) => { // z-[70]: Ensures dialog appears above workflow operators (z-[60]) and other UI elements return (
{children}
) } export default ContentDialog