Skip to content

Instantly share code, notes, and snippets.

@marekpiechut
Created July 3, 2020 11:59
Show Gist options
  • Select an option

  • Save marekpiechut/474e29798489701c7c1a01215c66902f to your computer and use it in GitHub Desktop.

Select an option

Save marekpiechut/474e29798489701c7c1a01215c66902f to your computer and use it in GitHub Desktop.
Get lazy loading cheap with IntersectionObserver in React
const ExerciseItem = ({ exercise }: Props) => {
const [url, setUrl] = useState<?string>(null)
return <div css={styles.thumb} style={{ backgroundImage: `url(${url})` }} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment