I am following this:
https://www.codeandweb.com/babeledit/tutorials/how-to-translate-your-react-app-with-react-i18next
But, as you can see, I have to do this:
export default translate()(App);
But I am already using this in my component:
export default withRouter(connect(null, mapDispatchToProps)(withStyles(styles)(SignIn)));
What Can I do in this case?
Thanks a lot.