import React, { useState } from 'react'; import FsLightbox from 'fslightbox-react'; export const LightBox = (props) => { const [toggler, setToggler] = useState(false); return ( <> setToggler(!toggler)} /> > ); };