You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
Hello,
how can reuse reducer actions of one Fractal route into another Fractal route container.
import { fetchExpertProfile} from '../modules/dashboard';
import { getTasks } from '../../ExpertDashboard/modules/dashboard';
const mapDispatchToProps = (dispatch) => { return ({ fetchExpertProfile: () => dispatch(fetchExpertProfile()), getTasks: (payload) => dispatch(getTasks(payload)) }); };
const mapStateToProps = (state) => ({ taskList: state.dashboard.taskList, isFetching: state.managerDashboard.isFetching, isAuthenticated: state.managerDashboard.isAuthenticated });
For this i want to use getTask() from another reducer but getting an error.
Please Help ASAP.
The text was updated successfully, but these errors were encountered: