Created
January 12, 2020 13:38
-
-
Save emmabostian/8c700da6b273b9bb33220d3e5f4a8fbf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return ( | |
<div className="gallery" onClick={onClick}> | |
<p className="gallery-directions"> | |
Click anywhere to see the next image | |
</p> | |
{transitions.map(({ item, props, key }) => { | |
const Image = images[item]; | |
return <Image key={key} style={props} />; | |
})} | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment