Skip to content

useIntervalFn

Package
Share
Category
Description
wrapper for `setInterval` with controls

Wrapper for setInterval with controls

Demo

Hello

interval:

Usage

js
import { useIntervalFn } from '@hungpvq/shared-core';

const { pause, resume, isActive } = useIntervalFn(() => {
  /* your function */
}, 1000);