I am using Redux and React for my project. I have some Routes in App.js. I also use the connect function in react-redux in my project. To prevent update blocking issue, I usuall
You can use it with the method compose from redux library.
compose
export default compose( withRouter, connect(mapStateToProps, mapDispatchToProps) )(App);