Skip to content

Instantly share code, notes, and snippets.

@hanford
Created April 26, 2017 02:08
Show Gist options
  • Save hanford/1953c706a71e8065c31df50737cf60d0 to your computer and use it in GitHub Desktop.
Save hanford/1953c706a71e8065c31df50737cf60d0 to your computer and use it in GitHub Desktop.
this.state = {
isImgLoaded: false
}
const img = document.createElement('img')
img.onload = () => this.setState({
isImgLoaded: true
})
img.src = nonBlurry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment