for example, how to handle the callback of redux-saga, call your own method, for example, clear the input of the form after executing saga, or pop up the success message box, or jump to the page, etc. import { call, put, takeLatest } from redux-saga ...
componentDidMount() { getTaskState this.props.dispatch(getTaskState("status")) this.props.dispatch(getTaskState( type )) } const homeReducer = (state=initialState, action) => { if(action.type === GET_TASK...