Вам также нужно использовать compose
import { bindActionCreators, compose } from 'redux';
export default compose(
connect(
mapStateToProps,
mapDispatchToProps, // or put null here if you do not have actions to dispatch
),
withStyles(styles),
)(YourComponent);