| 12345678910111213141516 |
- import { useEffect, useState } from 'react'
- // consider using https://github.com/xnimorz/use-debounce
- export function useDebounce<T>(value: T, delay?: number): T {
- const [debouncedValue, setDebouncedValue] = useState<T>(value)
- useEffect(() => {
- const timer = setTimeout(() => setDebouncedValue(value), delay ?? 500)
- return () => {
- clearTimeout(timer)
- }
- }, [value, delay])
- return debouncedValue
- }
|