full-stack-dev-2023 icon indicating copy to clipboard operation
full-stack-dev-2023 copied to clipboard

Issue: Incorrect Usage of 'redux-thunk' Module

Open crazycodescat opened this issue 1 year ago • 0 comments

**Issue: Incorrect Usage of 'redux-thunk' Module

Description: When attempting to apply middleware in the Redux store configuration, an error is encountered due to incorrect usage of the 'redux-thunk' module. The code attempts to import the 'redux-thunk' middleware and apply it using the 'applyMiddleware' function. However, the error message indicates that the module does not export a member named 'default', leading to a SyntaxError during module import.**

Error: import thunk from "redux-thunk"; ^^^^^ SyntaxError: The requested module 'redux-thunk' does not provide an export named 'default'

**import thunk from "redux-thunk";

const store = createStore( reducer, applyMiddleware(logger.default, thunk.default) );**

crazycodescat avatar Feb 01 '24 13:02 crazycodescat