I am using React Perf tools to find out wasted rendering/cycles. (react-addons-perf)
I see lot of Connect(component-name) in the list. What does that mean?
Incidentally all these Connects are those where I have passed null as a parameter. (I don't need to use mapStateToProps & mapDispatchToProps). But to use 'dispatch' functionality, I do have to pass null as a parameter to connect.
export default connect(null)(FacilityCard);
How can i save this time wasted?