- ## useDebounce **1. value debounce** ``` import React, { useState } from "react"; import { useDebounce } from "use-utils"; function App() { const [inputVal, setInputVal] = useState(""); // you can use this value for api call const debouncedValue = useDebounce(inputVal, 500); return (
debounced value: {debouncedValue}