import { useState } from 'react' const Lightbox = ({ cancel, children }) => { const [ box, setBox ] = useState(false) if (box) return (