4 ms·
Since you mention scrolling, it sounds like you are rendering a lot of off-screen content... Have you looked into solutions like react-virtualized? It can defin
by hakanito 7y ago
Since you mention scrolling, it sounds like you are rendering a lot of off-screen content... Have you looked into solutions like react-virtualized? It can definitely speed up the experience
- _bxg1 7y agoI haven't; the amount of magic going on makes me a little wary, but it does seem like it could be a good solution. Maybe I'll give it a try.
- davedx 7y agoIt looks like React concurrent mode also deprioritizes the rendering of off-screen content for you. (I've been browsing the react reconciler source this morning...)