@pruthvi21/use-debounce
v1.0.2
Published
A small simple hook for implementing debounce in react
Downloads
11
Maintainers
Readme
use-debounce
A Small React hook that implements debouncing in react.
Usage
const someFunction= () => any
const delay = 1000 // delay in ms
const debouncedFunction= useDebounce(delay,someFunction)
debouncedFunction() // Calls it only once after the delay regardless of number of calls
What's Debouncing?
I'd suggest you go through this blog
Simpler TL;DR image explaination: