@noiob the thing is that React’s performance on client-side heavily depends on how much blocking stuff you got, so an app that has no third party components and is made by people who know what they’re doing will run quite snappy, despite the fact that it’s duplicating the entire DOM and the respective render loops
@noiob yep, pretty much! people tend to abuse stuff like
useEffect
too much because it’s easy when you’re ignorant of basic threading concepts