1.0.4 • Published 2 years ago

@jdthornton/usetimeout v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@jdthornton/usetimeout

npm (scoped) npm bundle size (minified)

React timeout hook.

Install

$ npm install @jdthornton/usetimeout

Usage

import useTimout from "@jdthornton/usetimeout";

function App({ isSet, handleTimeoutEnd }){

  // 'handleTimeoutEnd' will be called at the end of 1000s if isSet is true
  useTimout(handleTimeoutEnd, isSet ? 1000 : null)

  return null
}