Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 25, 2020 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/6e38684c0c945bf6ff561bee919fecd0 to your computer and use it in GitHub Desktop.
Save velotiotech/6e38684c0c945bf6ff561bee919fecd0 to your computer and use it in GitHub Desktop.
Cleaner Efficient Code with Hooks and Functional Programming - Fixing Huge Components with hooks - LazyLoader using custom component
import React, { useEffect } from "react";
import { useScroll } from "./useScroll";
const LazyLoader = ({ isLoading, isCompleted }) => {
const data = useScroll();
// cDU
useEffect(() => {
//
}, [/** dependencies */]);
return data && <div>{data}</div>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment