import { useState } from "react"; import Timer from "@pear-rec/timer"; import "@pear-rec/timer/src/Timer/index.module.scss"; import * as reactTimerHook from "react-timer-hook"; const { useStopwatch } = reactTimerHook; function App() { const { seconds, minutes, hours, days, start, pause, reset } = useStopwatch({ autoStart: true, }); const [isShowTitle] = useState(true); return (