you need to install npm install recomposeoryarn add recompose
and in the export section
export default compose(
withStyles(styles, {
name: 'App',
}),
connect(),
)(AppFrame);
or you can do:
export default withStyles(styles)(connect(select))(Cart));
source
share