Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 796 Bytes

useDebounce.md

File metadata and controls

37 lines (26 loc) · 796 Bytes

useDebounce

A hook to debounce a callback function with a specified delay.

Arguments

  • callback (function): The function to debounce.
  • delay (number): The debounce delay in milliseconds.
  • dependencies (array): The dependencies for the effect.

Returns

  • None

Hooks Involved

How to Use

import { useState } from "react"
import useDebounce from "./useDebounce"

export default function DebounceComponent() {
    const [count, setCount] = useState(10)
    useDebounce(() => alert(count), 1000, [count])

    return (
        <div>
            <div>{count}</div>
            <button onClick={() => setCount(c => c + 1)}>Increment</button>
        </div>
    )
}