Skip to content

Instantly share code, notes, and snippets.

@LukeberryPi
Created June 24, 2024 15:21
Show Gist options
  • Save LukeberryPi/a9d91cc202185aa6319da8a1aaaf8eb9 to your computer and use it in GitHub Desktop.
Save LukeberryPi/a9d91cc202185aa6319da8a1aaaf8eb9 to your computer and use it in GitHub Desktop.
simple useDebounce hook
import { useEffect, useState } from 'react';
export default function useDebounce(value: string, delay: number) {
const [debouncedValue, setDebouncedValue] = useState(value);
useEffect(() => {
const handler = setTimeout(() => {
setDebouncedValue(value);
}, delay);
return () => {
clearTimeout(handler);
};
}, [value, delay]);
return debouncedValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment