Reactjs – In React if a render is discarded, are the useEffects still run (and cleaned up?)
I'm trying to wrap my mind around the semantics of discarded renders which I understand can happen in concurrent mode. I would expect that if a render is discarded then none of the useEffect()s are called. Firstly, because useEffects() should…