react count down, hooks
npm install react-hooks-count-downnode
npm install react-hooks-count-down
`
How use
`javascript
import CountDown from 'react-hooks-count-down'
import React from 'react'
const App = () => {
return
}
`
##### Props:
details look Demo
`javascript
{
// dayhourminutessecondsmilliseconds
// for example 3 24 60 60 1000
time?: number
format?: string // DD hh:mm:ss:ms
getTime?: (time: Timer) => void // get count down time
renderContent?: (args: Content) => ReactElement | null // custom render count down
actionRender?: (args: Content) => React.ReactNode
// action custom
}
``