I have some <List> connected component which passes a lot of attributes to <ListItem> components. It is getting to the point where a refactor is needed because too many attributes are being passed down.
Suppose I turn the table and instead make <ListItem> a connected component so that I am not required to pass so many attributes down. Would I expect to see a performance degradation or improved performance of my UI rendering?
I've done some reading but wasn't able to find an exact answer to my question.