Skip to content

Instantly share code, notes, and snippets.

View LightSean's full-sized avatar
🏠
Working from home

LightSean

🏠
Working from home
View GitHub Profile
@felipecsl
felipecsl / useLazyEffect.ts
Created September 8, 2022 14:49
Debounced React useEffect with a wait time in milliseconds
// https://stackoverflow.com/a/67504622/51500
import {
DependencyList,
EffectCallback,
useCallback,
useEffect,
useRef,
} from "react";
import { debounce } from "lodash";