以下のコードで何が起こりますか? ```jsx const [count, setCount] = useState(0); useEffect(() => { setCount(count + 1); }); ```