Unable to get multiple nested components with redux-connect when rendering
I have created drop-down components with redux connect to reuse in my application.
Components created CategoryDropDown ,SubCategoryDropDown, CategoryTypeDropDown
I am nesting the CategoryDropDown component into the SubCategoryDropDown -Working Correctly
When nesting the SubCategoryDropDown in the CategoryTypeDropDown Component only the CategoryDropDown connect() method gets triggered.
// This is the connect method that is used in all the components //
export default connect(
mapStateToProps,
dispatch => bindActionCreators(actionCreators, dispatch)
)(SubCategoryDropDown);
Am I using the component and redux-connect correctly when working with nested components?
Can I update a child component from another parent component? I know you can update parent from the child using props but not sure how to do it other way around.