Overview of Redux Thunk
createAsyncThunkallows you to create actions for handling asynchronous operations.
const asyncUpFetch = createAsyncThunk('counterSlice/asyncUpFetch', async () => {
const resp = await fetch('https://api.aergo.io/~~')
const data = await resp.json()
return data.value
})
- createAsyncThunk Flow

- While reducers automatically create action creators for you, this is not the case for asynchronous operations. You need to create the action creators manually within
extraReducers.
One minute to read

