Redux sagas
Redux sagas
<div onClick={() => userLoginEnter()} />
userLoginEnter() {
this.props.userLoginEnterAction({
password: this.state.pass,
groupId: this.state.gid,
userId: this.state.name
});
}export function userLoginEnter(payload) {
return {
payload,
type: USER_LOGIN_ENTER
};
}Last updated