From 3dd41002e1839d00f931d376946cabce48a020e9 Mon Sep 17 00:00:00 2001 From: Jiwoo So <58384366+jiwooproity@users.noreply.github.com> Date: Thu, 15 Aug 2024 15:39:20 +0900 Subject: [PATCH] Fix: Fix the throttle custom hook description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d182d082..7ba2665a 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ function Component() { - [`useSessionStorage`](https://usehooks-ts.com/react-hook/use-session-storage) — uses the [sessionStorage API](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) to persist state across page reloads. - [`useStep`](https://usehooks-ts.com/react-hook/use-step) — manages and navigates between steps in a multi-step process. - [`useTernaryDarkMode`](https://usehooks-ts.com/react-hook/use-ternary-dark-mode) — manages ternary (system, dark, light) dark mode with local storage support. -- [`useThrottle`](https://usehooks-ts.com/react-hook/use-throttle) — A custom hooks that support throttle +- [`useThrottle`](https://usehooks-ts.com/react-hook/use-throttle) — A custom hooks that support throttle. - [`useTimeout`](https://usehooks-ts.com/react-hook/use-timeout) — handles timeouts in React components using the [setTimeout API](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout). - [`useToggle`](https://usehooks-ts.com/react-hook/use-toggle) — manages a boolean toggle state in React components. - [`useUnmount`](https://usehooks-ts.com/react-hook/use-unmount) — runs a cleanup function when the component is unmounted.