I'm trying to render a stateful component inside react-window rows (using FixedSizeList), but their state (useState
) is not maintained when they get re-rendered so it resets every time I scroll back to them. This makes sense because they're getting unmounted, but is there a way prevent re-rendering via memo
or useCallback
? I've seen some examples of avoiding re-renders, but I can't get them working. In this example sandbox I've made, I tried memoizing a component (<InnerRow>
) that only takes a single prop, but it seems to keep re-rending it regardless of calling memo
.
Am I not memoizing correctly or doing something wrong? Or is this not possible, and my only solution is to maintain the state in some other way, outside of the row component.