@hooks/raf
v0.1.0
Published
React hook to wrap requestAnimationFrame
Downloads
3
Maintainers
Readme
🎒 @hooks/raf
React hook to wrap requestAnimationFrame
Install
npm i @hooks/raf
Usage
useRaf
useRaf(callback: C, deps?: readonly D[]): void
Parameters
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.