Skip to content

Instantly share code, notes, and snippets.

@KevinVR
Last active July 25, 2021 17:42
Show Gist options
  • Select an option

  • Save KevinVR/fcf0dfc851f3bf61b26489c7650ec125 to your computer and use it in GitHub Desktop.

Select an option

Save KevinVR/fcf0dfc851f3bf61b26489c7650ec125 to your computer and use it in GitHub Desktop.
import React, {useState} from 'react';
const LightBox = ({children, src, alt, Wrapper = 'div'}) => {
const [ isOpen, setIsOpen ] = useState(false);
return (
<Wrapper>
</Wrapper>
);
};
export default LightBox;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment