Skip to content

Instantly share code, notes, and snippets.

@cfv1984
Created September 5, 2018 13:29
Show Gist options
  • Save cfv1984/6387b3faf2b9b7e8df95fdd4dc4ef8c6 to your computer and use it in GitHub Desktop.
Save cfv1984/6387b3faf2b9b7e8df95fdd4dc4ef8c6 to your computer and use it in GitHub Desktop.
const Album = ({photos}) => <Fragment>
{photos.map(photo => <Thumbnail photo={photo} key={photo.id}/>)}
</Fragment>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment