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