import React from 'react' export function Modal({ isOpen, toggleModal = () => {}, children, size = "md" }) { return (
{children}
) }