Using Promise Lifecycle Actions From createAsyncThunk
Learn to use the lifecycle actions provided by createAsyncThunk to handle data fetching in your Redux toolkit applications
We'll cover the following...
Introduction
To abstract the async state patterns commonly used in thunks, createAsyncThunk
makes use of the standard Promise
object’s state. ...