DebouncedInput
An input that debounces the input value.
An input that debounces the input value.
import DebouncedInput from "@/components/ui/DebouncedInput";
<DebouncedInput
delay={500}
initialValue={value}
onDebouncedChange={(value) => console.log(value)}
/>