📜  React useState hook - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:14.297000             🧑  作者: Mango

代码示例6
...
const [count, setCounter] = useState(0);
const [moreStuff, setMoreStuff] = useState(...);
...

const setCount = () => {
    setCounter(count + 1);
    setMoreStuff(...);
    ...
};