import { Fragment, ReactNode } from 'react' import { Dialog, Transition } from '@headlessui/react' // From https://tailwindui.com/components/application-ui/overlays/modals export function Modal(props: { children: ReactNode open: boolean setOpen: (open: boolean) => void }) { const { children, open, setOpen } = props return (
{/* This element is to trick the browser into centering the modal contents. */}
{children}
) }