Created
August 12, 2018 04:48
-
-
Save s4kh/9bb6b75d52c3fc36f543f1af4c7dc569 to your computer and use it in GitHub Desktop.
React design patterns
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
const GalleryItem = ({ url, alt, description, alt, author }) => ( | |
<div className="img-container"> | |
<img src={url} alt={alt} /> | |
{description} - {author} | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment