I am new in React world. I am using react-virtualized Grid to show a lot of elements. At once I am showing 5x8 elements on page + 5x8 overscanRowCount. All works fine in Chrome and Firefox. In Edge I see little more whitespace while fast scrolling, but still it is ok.
But IE11 freezes on each scroll...its working OK as long as rendered elements are simple, like div with text inside it.
I am rendering empty divs while "isScrolling" and this have positive effect on IE performance, but when scroll ends and real elements are rendering Grid freezes again. I am using simple Grid, something like Basic Example + windowScroller, and now my Grid is rendering components which returning JSX-object (no heavy logic inside). CSS for styling Grid elements is external (Not react-side styles). Elements have no flexbox inside.
I spent several days, but still have problems with IE11 performance. Thanks in advance.