import React from "react"; import { AnimatePresence, motion } from "framer-motion"; import { Dialog } from "@headlessui/react"; export interface ModalProps { open: boolean; onClose: () => void; children: React.ReactNode; } export const Modal = ({ open, onClose, children }: ModalProps): JSX.Element => { return (
{children}
); };