import { useState } from 'react' const Modal = ({ cancel, children }) => { const [ modal, setModal ] = useState(false) if (modal) return (