some-handy-hooks
v2.0.5
Published
Bunch of react.js hooks for your app
Downloads
232
Maintainers
Readme
some-handy-hooks
Bunch of handy hooks for your react application!
yarn add some-handy-hooks
# or with npm
npm install some-handy-hooks --save
useCountdown() hook
Creates a countdown with 1 sec interval, that will return on each render complete set of time variables as well as total time elapsed + onFinish callback can be passed to handle the logic.
import { useCountdown } from 'some-handy-hooks'
const { seconds, minutes, totalSeconds } = useCountdown({minutes: 20})