useDebounceValue Delays the update of a value by the specified delay time. Usage const Usage = () => { const [count, setCount] = useState(0); const debouncedCount = useDebounceValue(count, 100); ... };