React Stopwatch Hook
A React Stopwatch Hook
``sh`
npm install react-hook-stopwatch
yarn add react-hook-stopwatch
`javascript
import { useStopwatch } from "react-hook-stopwatch";
export const Stopwatch = () => {
const [{ time, format }, start, stop, reset] = useStopwatch();
return (
`sh
Output: 87660 // Milliseconds
Output: 00:01:27.66 // HH:mm:ss:ms
``