Skip to content

Instantly share code, notes, and snippets.

@perjansson
Last active December 4, 2017 20:54
Show Gist options
  • Save perjansson/41b4cc8230932f13a9220096be3b5486 to your computer and use it in GitHub Desktop.
Save perjansson/41b4cc8230932f13a9220096be3b5486 to your computer and use it in GitHub Desktop.
fetchImage = src => {
const image = new Image()
image.onload = () => this.setState({ currentImage: this.loadingImage.src, loading: false })
image.src = src
this.loadingImage = image
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment