Is there a way I can wrap two HOCs together?
export default withRouter(Page) export default withTranslation()(Page);
Have you tried this? It should probably work.
export default withRouter(withTranslation()(Page));
2.1m questions
2.1m answers
60 comments
57.0k users