Describe the bug
importReact,{useState}from'react';functionExample(props){return<div>{props.title}</div>}constExampleNew=React.memo(Example,(prevProps,nextProps)=>{// update here ,hot reload doesn't work unless refreshing the page in browser// console.log("2")console.log("1")returnfalse})functionApp(){const[count,setCount]=useState(0);return(<div><ExampleNewtitle={count}/><buttononClick={()=>setCount(count+1)}>
Click me
</button></div>);}exportdefaultApp;
Describe the bug