📅  最后修改于: 2022-03-11 15:02:14.297000             🧑  作者: Mango
...
const [count, setCounter] = useState(0);
const [moreStuff, setMoreStuff] = useState(...);
...
const setCount = () => {
setCounter(count + 1);
setMoreStuff(...);
...
};