I\'m having an issue with the new FlatList component. Specifically, it does not rerender it\'s rows, even though props that the row is dependent on changes.
The F
this wasn't working for me
setTabData(tabD);
and this worked for me
setTabData([...tabD]);