import { motion } from "framer-motion"; import { ReactElement } from "react"; interface Props { onClose: () => void; children: ReactElement [key: string]: any; } export default function Modal({ onClose, children, ...props }: Props) { return (
{children}
) }