useUpdateEffect React hook
npm install use-update-effect-hookAn useEffect that does not run on the first render
npm install use-update-effect-hook
or
yarn add use-update-effect-hook
## Quickstart
``jsx
import { useState } from "react";
import useUpdateEffect from "use-update-effect-hook";
function App() {
const [count, setCount] = useState(10);
useUpdateEffect(() => alert(count), [count]);
return (
https://use-update-effect.vercel.app/