Skip to content

Instantly share code, notes, and snippets.

@s4kh
Created August 12, 2018 04:48
Show Gist options
  • Save s4kh/9bb6b75d52c3fc36f543f1af4c7dc569 to your computer and use it in GitHub Desktop.
Save s4kh/9bb6b75d52c3fc36f543f1af4c7dc569 to your computer and use it in GitHub Desktop.
React design patterns
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