redux-saga-beginner-tutorial
redux-saga-beginner-tutorial copied to clipboard
Redux/Redux-saga beginner tutorial
Where is the saga in? Are you kiding me ??
At [Beginner Tutorial](https://redux-saga.js.org/docs/introduction/BeginnerTutorial.html), In the initial setup section It is written that > If things go well, you should see 2 buttons Increment and Decrement along with a message below...
After cloning and installing repo when I run `npm run` I got ``` [0002] info Server running at http://172.18.0.1:9966/ (connect) [0002] info LiveReload running on 35729 events.js:183 throw er; //...
The original repository cannot be cloned in https://codesandbox.io because of missing `lib/index.js` file. The fix is to change `main` field to point to the right file.
In section "Making Asynchronous calls" : ``` export default function* rootSaga() { yield all([ helloSaga(), watchIncrementAsync() ]) } ``` Q: It throw an error as follow ``` uncaught at rootSaga...
Updates to latest React practice: * `React.PropTypes` was removed, and is now available in the `prop-types` package Resolves these warnings during `npm install` (or `yarn install`): * Deprecation of `babel-preset-es2015`...
Updates to latest React practice: * `React.PropTypes` was removed, and is now available in the `prop-types` package Resolves these warnings during `npm install` (or `yarn install`): * Deprecation of `babel-preset-es2015`...

Current naming makes it confusing, what is library and what is example.