function Counter() { const [count, setCount] = useState(0); const intervalId = useRef(); useEffect(() => { intervalId.current = setInterval(() ...
確定! 回上一頁