Skip to content

Instantly share code, notes, and snippets.

@Vivek205
Created March 4, 2021 05:24
Show Gist options
  • Save Vivek205/75255864fafd47178b525d867cd12a35 to your computer and use it in GitHub Desktop.
Save Vivek205/75255864fafd47178b525d867cd12a35 to your computer and use it in GitHub Desktop.
imageLazyLoading.js
const GifContainer = ({ classes, content }) => {
return (
<img
src={content}
alt="Demo Gif File"
className={classes.FullWidth}
loading="lazy"
/>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment