@hooks/raf
v0.1.0
Published
React hook to wrap requestAnimationFrame
Downloads
40
Maintainers
Readme
🎒 @hooks/raf
React hook to wrap requestAnimationFrame
Install
npm i @hooks/rafUsage
useRaf
useRaf(callback: C, deps?: readonly D[]): voidParameters
callback: C
Will be executed before the each repaint.
deps?: readonly D[]
An array of values that, when modified, will clear and reset the callback effect. See https://reactjs.org/docs/hooks-reference.html#uselayouteffect.
