We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of import { resetReducer } from cooldux :
import { resetReducer } from cooldux
export const { someAction, someOtherAction, initialStateCombined } = duck; const reducer = resetReducer(initialStateCombined, (state = initialStateCombined, action) => { return duck.reducerCombined(state, action); }); export default reducer;
It should be as simple as:
export const { someAction, someOtherAction } = duck; export default duck.resetReducer;
you can still the former example if you need custom reducer functionality. Just finding myself using the same reset pattern too often
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of
import { resetReducer } from cooldux
:It should be as simple as:
you can still the former example if you need custom reducer functionality. Just finding myself using the same reset pattern too often
The text was updated successfully, but these errors were encountered: