React Material UI - Export multiple higher order components

后端 未结 7 1432
深忆病人
深忆病人 2020-12-04 15:43

I\'m stuck on exporting material-ui styles with redux connector. Here is my code:

import React, { Component } from \'react\';
import { connect } from \'react         


        
7条回答
  •  粉色の甜心
    2020-12-04 16:08

    You may use this below. As both withStyles and connect were higher order components

    export default withStyles(styles, {name: 'Cart'})(connect(mapStateToProps, mapDispatchToProps), Cart);
    

提交回复
热议问题