...

/

Implementing a Loading Indicator

Implementing a Loading Indicator

Learn how to implement a spinner in your application.

We'll cover the following...
Loading image

A common question when using Redux is how to show a spinner when server requests are in progress. The middleware approach provides an answer using additional dispatch() calls. Before a request starts or after it completes, we can dispatch a special action to be caught by reducers responsible for the UI ...