function Page() {
const [count, setCount] = useState(0);
useEffect(() => {
console.log("effect");
}, []);
return <button onClick={() => setCount(count + 1)}>{count}</button>;
}
After mounting and clicking the button three times, how many times has "effect"
been logged?

