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