Skip to main content

Questions tagged [redux-saga]

0 votes
1 answer
1k views

Let's say I have a react component like this: const MyComponent = ({data}) => (<div>{JSON.stringify(data)}</div>); const myReduxSelector = (state, id) => state.someData[id]; ...
dwjohnston's user avatar
  • 2,769
5 votes
1 answer
7k views

On a typical web app, we commonly have to deal the LOADING/SUCCESS/ERROR problem - which is that: When I make a backend request I want to display a loading cursor, perhaps disable some buttons. When ...
dwjohnston's user avatar
  • 2,769