Hacker News new | ask | show | jobs
by RyanHamilton 874 days ago
I've built a real time updating app using react and I'm struggling to see the benefit here. For the very core parts I'm already avoiding the react overhead by using useref to maintain the same object. This reduces "hydration " and traversing to nil cost with no new concepts to learn. Why would I use million?
1 comments

React is still doing reconciliation for your full element tree, even if you minimize updates. The approaches are not really comparable.