0.1.0 • Published 6 years ago
@hooks/interval v0.1.0
🎒 @hooks/interval
React hook to wrap setInterval
Install
npm i @hooks/intervalUsage
useInterval
useInterval(callback: Function, interval?: number | null): voidParameters
callback: Function
Will be executed each time the interval elapses.
interval?: number | null
Length of time in milliseconds before the callback is executed. Providing null will clear the interval.