import { useState } from 'react' export const Lightbox = ({ children }) => { const [box, setBox] = useState(false) if (box) return (
setBox(false)} >
{children}
) return (
setBox(!box)} className="hover:cursor-zoom-in"> {children}
) }