I am rendering a simple react app component but I am not able to understand why "Inside useeffect hook." is being printed on console twice. Should it not just be printed once after the component is rendered, since there is no state change and the dependency array is also empty? Below is the code: `
export default function App(){
const [count, setCount] = React.useState(0);
useEffect(()=>{
console.log("Inside useeffect hook.")
},[]);
return(
<h1>hey.</h1>
);
}
`