useUpdateLayoutEffect
A hook alike useLayoutEffect but skips running the effect for the first time.
Overview
A hook alike useLayoutEffect but skips running the effect for the first time.
Installation
Open inpnpm dlx shadcn@latest add https://shadcn-ahooks.vercel.app/r/useUpdateLayoutEffect.jsonnpx shadcn@latest add https://shadcn-ahooks.vercel.app/r/useUpdateLayoutEffect.jsonyarn shadcn@latest add https://shadcn-ahooks.vercel.app/r/useUpdateLayoutEffect.jsonbun shadcn@latest add https://shadcn-ahooks.vercel.app/r/useUpdateLayoutEffect.jsonA hook alike useLayoutEffect but skips running the effect for the first time.
Examples
Basic usage
API
The API is exactly the same as React.useLayoutEffect.
useUpdateEffect(
effect: React.EffectCallback,
deps?: React.DependencyList,
)