Redux icon indicating copy to clipboard operation
Redux copied to clipboard

Results 4 Redux issues
Sort by recently updated
recently updated
newest added

redux-logger breaking changes should have been resolved by doing as below .. Change the below line from .. ``import logger from 'redux-logger';`` to ``import { createLogger } from 'redux-logger';`` And...

ERROR in ./src/index.js Module build failed: SyntaxError: Unexpected token (28:14) 26 | switch (action.type) { 27 | case 'GET_USER': > 28 | return {...state, sendingRequest: true, status: 'Pending...', statusClass: 'pending'}...

On this repo - https://github.com/codewithtim/Redux/tree/master/11%20Async%20Actions After running ``npm start`` getting the below ``` Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API...

thanks for your good tutorial,I have learned a lot.