Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Use Interval hook

Introduction

This hook is allow trigger callback on interval in React with ease (which often cause a lot of pain relating to closures), also it return function that allow more control over how often the callback is called

Example

import useInterval from "use-interval-hook";

callback = ()=>{
  console.log("Hello world!");
}

const {
    pause,
    activate,
    stop,
    timeLapse,
  } = useInterval({
  interval: 1000;
  callback,
  delay: 2000;
  })

About

A React hook to implement useInterval logics thit more tool to control how often the callback is called

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages