React timeout hook
npm install @jdthornton/usetimeout
$ npm install @jdthornton/usetimeout
`
Usage
`js
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
}
``