Skip to content

Instantly share code, notes, and snippets.

@jnsdls
Created September 13, 2016 09:03
Show Gist options
  • Save jnsdls/c0e3346971b9005cae3e1b48bc1d7e22 to your computer and use it in GitHub Desktop.
Save jnsdls/c0e3346971b9005cae3e1b48bc1d7e22 to your computer and use it in GitHub Desktop.
render() {
const { photo, style, nextPhoto } = this.props;
return (<div className="photo" style={style || {}}>
<div
className="photo-img"
onClick={nextPhoto}
style={{ backgroundImage: `url(${photo.image_url})` }}
/>
</div>);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment