I’ve found React.memo usage should be rare
I’ve found React.memo usage should be rare. If it’s common, I ask:
1. Is state is too high?
2. Are components properly decomposed? Could we move state down and reduce render overhead by creating a child component?
3. Could we use the slot pattern to eliminate prop drilling?