dispatchActions
The dispatchActions utility can be used to manually connect  the Redux store state or dispatch actions to a component which is not directly linked to a controller, by using the connect() utility.
import React, {Component} from 'react';
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import {dispatchActions} from 'repertoire'
class User extends Component {
  render() {
    return <div />;
  } 
}
const mapStateToProps = state => ({
  users: state.admin.users
});
const mapDispatchToProps = dispatch => bindActionCreators({
  setCurrentUser: dispatchActions.setCurrentUser
}, dispatch);
export default connect(mapStateToProps, mapDispatchToProps)(User);
  Last updated
