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