```tsx export default function Home() { useEffect(() => { console.log(1); // will log twice }, []) } ```