useDebounce Hook
npm install use-debounce-hook!Node.js CI   
``bash`
npm install --save use-debounce-hook
`tsx
import React, { useState } from 'react';
import { useDebounce } from 'use-debounce';
const App = () => {
const [value, setValue] = useState('');
const text = useDebounce(value);
//ou const text = useDebounce(value, 1000); timeout configuration
return (
MIT © fulviocanducci
---
---
This hook is created using create-react-hook.