in a file of react
project, both material
and react-redux
are used at the same time. When using default export, it is normally used like this:
export defult withStyles(styles)(App)
or
export defult connect(mapStateToProps,null)(App)
what should I do if I want to merge these two together and export them now?