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) => { return (
{children}
) } export default ContentDialog