Hope you enjoyed this video! You can find the previous videos in the series here: kzbin.info/aero/PLbISvIqMwJh2FwM2G1lyTDJDg7Fyrv3Aj If you liked it let me know and I'll make more of this! Upcoming video will be a tutorial on how to handle actions defined in other slices, then in the next video we'll look at handling side effect with createAsyncThunk! Subscribe to the channel to be notified when I release more!
@ИванКурочкин-с9м Жыл бұрын
Just a comment to support the channel. Straight to the point, that's all we need, thanks!
@ayoubahabchane2 жыл бұрын
Straight to the point. You're the best.
@francisfuwaku Жыл бұрын
it was straight to the point
@emmanuelsackey30263 жыл бұрын
I love the series bro. Keep it up...
@wishmeheaven11 ай бұрын
Another great explanation which makes me wonder..... Where did you disappear..? I wish you were teaching more content.
@mariodan4953 жыл бұрын
why cant we modify the payload inside the reducer before updating the state? Great video btw.
@giogiorgi469 Жыл бұрын
hi, what vs code theme used in this video? it has nice colors
@diegosepulveda86913 жыл бұрын
The video about extra reducer is not in the playlist
@saidmalikallayarov41042 жыл бұрын
Thanks! I have a question. What if we have to change not only one state, but several ? exmp: quizAction : (state, action) => { state.quiz = action.payload } quizAction: (state, action) => { state.quiz = action.quiz state.results = action.results } how to handle in that case ? While dispatchich quizAction I am passing 2 arguments: dispatch(quizAction(quiz, results))