'use client' import { Dialog, Transition } from '@headlessui/react' import type { ReactNode } from 'react' import { Fragment } from 'react' export default function CollectionModal({ show, children, onClose, }: { show: boolean children: ReactNode onClose: () => void }) { return (
{children}
) }