import { useState } from 'react' const Modal = ({ cancel, children }) => { return (
{children}
) } export default Modal