📅  最后修改于: 2022-03-11 15:01:27.943000             🧑  作者: Mango
import { useRef } from 'react';
function LogButtonClicks() {
const countRef = useRef(0);
const handle = () => {
countRef.current++; console.log(`Clicked ${countRef.current} times`);
};
console.log('I rendered!');
return ;
}