-
First of all, thanks for a great example of redux-saga project structure. Sagas greatly fits my project and I will try to use your approach, maybe a little simplified.
When I was exploring the source…
-
1. Cloned the Repo
2. Went inside the folder
3. Did **npm install**
4. Did **npm start**
Tried this on master and sagas branch, got the same error on both of them
Got following error on conso…
-
# Use Sagas
I think a saga can be useful to solve this part:
> Business rule: if the current counter value is > 10 AND the button is active, then the counter value is incremented by 2 instead of 1.
…
-
Hi,
I'd just like to raise this issue because it has been bugging me for a while. In the readme, you declare that the main process becomes the Single Source of Truth, and renderer mere proxies.
I …
-
produce the error: https://github.com/ghasemikasra39/testDevTools
```
React Native Environment Info:
System:
OS: Linux 4.15 Ubuntu 18.04.3 LTS (Bionic Beaver)
CPU: (8) x64 Intel(…
-
the tutorial :
```js
const store = createStore(
reducer,
applyMiddleware(createSagaMiddleware(helloSaga))
)
```
cause a error :
middleware.js:27Uncaught Error: You passed a function to t…
-
# Acceptance criteria
- [ ] can test redux sagas
- [ ] test written for at least 1 story
# DoD
- [ ] merged into `master`
- [ ] emulator app on `master` still starts
- [ ] emulator app on …
-
This is the first time I have ever used Redux and I've been trying to figure out how to make the Stoe code work again (with or without sagas) - it would be really useful to have the Store code use as …
-
After refreshing my primary `renderer` window I don't see actions across windows/the main process.
A secondary issue I'm seeing is that before an initial refresh, actions are sent across with the `…
-
Hi, I'm having an issue attempting to test one of my "root" sagas which looks like so:
```
export function* rootSaga() {
yield all([
activeRootSaga(),
inactiveRootSaga(),
takeLat…