full-stack-dev-2023
full-stack-dev-2023 copied to clipboard
Issue: Incorrect Usage of 'redux-thunk' Module
**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) );**