在react项目的一个文件中,同时使用了material和react-redux,使用默认导出的时候,正常是这么用的:export defult withStyles(styles)(App)或export defult connect(mapStateToProps,null)(App)现在要把这两个合并在一起导出,该怎么做?
1 回答
LEATH
TA贡献1936条经验 获得超6个赞
哈哈,自己尝试,找到方法了,
export default withStyles(styles)(connect(mapStateToProps,null)(App));
添加回答
举报
0/150
提交
取消