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