I\'m stuck on exporting material-ui styles with redux connector. Here is my code:
import React, { Component } from \'react\'; import { connect } from \'react
You may use this below. As both withStyles and connect were higher order components
export default withStyles(styles, {name: 'Cart'})(connect(mapStateToProps, mapDispatchToProps), Cart);