Every time I get intimidated about approaching a new subject in React or Redux, I come to your videos and realize that I was scared for nothing. Thank you for all your hard work. God(or whoever you do/don’t believe in) bless you!
Definitely the best series about Redux. At first, Redux was just a mystery to me but you managed to make it crystal clear. Thank you so much! Oh by the way, it was a great, great, GREAT idea to explain first how Redux works without React. I think it helped a lot with my overall understanding of Redux with AND without React.
I have gone through this series a few times, and a few of the vids over and over to internalize the detail. Vishwas - thank you VERY much for all of your time and care in producing this series. The content is very well organized. You are articulate, professional, focused, and clear, and you don't waste our time or yours with digressions. Your other videos and series are all equally well produced. All of this is Greatly appreciated.
This is the best documentation I have seen in react. When I was learning React last year, it was complex and I got discouraged bcos the material I used complicated it for me... But now, I am enjoying React and the playlist here on everything react simplified it for me. All thanks to you, Vishwas. I am grateful
Hi. Could you answer my question? I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
I went through all of your redux videos and they were awesome. You are doing it great. You created course from very basic to intermediate that it has made so easy. I understood in just 2 days which was earlier frustating to me as I could not understand well when I went through other leacturers. You are Mr. wonderful in context of react-redux.👏👏👏👏
I would like to add a comment after following through all the tutorials you have posted in this React-Redux series. It was a wonderful and best learning experience, now I have built quite a confidence when I use Redux. Thank You @Codeevolution.
Hi. Could you answer my question? I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
@@mostafababaei3431 that user comes from rootReducer where for userReducer we gave user as the name, so that 'user' has state...users was in individual reducer which we gave to combine and then to store
When the data is successfully fetched and you are mapping it to show on the page, should be provided with a key prop. Also when calling useState hook, react is requesting to pass fetchUsers as a dependency to the array.
Before watching this playlist, I used to have a great confusion. But now everything is clearly understood. I lost my fear on redux :) :) Thank you sir.
I am speechless!! The instructor is very good at destructuring seeming difficult concepts and putting it as everyone can understand. Thank you very much, sir you are the best. The best react-redux tutorial ever. I subscribed right away.
You are Really Down to Earth Vishwas sir,what you have given to us in this react-series is unpayable,am very much thankful for every single word used in this series.
This tutorial is excellent. I understood items that I didn't understand before. From my point of view, Mr. Vishwas, your teaching technique is excellent, I say that you are one of my favorite teachers. Thank you! Now I’m going to watch Practical React playlist.
just completed the whole series this is by far the best redux tutorial i've come across. Thannk you so much for the content and you've got good voice bro which makes it even more better 🙂
Vishwas, thank you for taking the time to prepare a wonderfu react-redux tutorials. I enjoyed it and once again, you have used your nice presentation style to make things understandable.
Awesome tutorial. I have watched other tutorials related to redux but i was not clear. AtLast i watched this now i am clear about how redux works. Thank you so much
Hey!! Vishwas. Great tutorial, as usual. The way you teach things is very intuitive and easy to understand and grasp. Please continue making such content in coming future as well.
Thanks a lot man!!! I went through all of them!! redux is a breeze !! I'm really grateful to you for all this knowledge ! May my Lord Jesus bless you for this knowledge shared!! :)
A big thumbs up to you Sir 👍🏼I'll recommend your tutorial to my peers. Heartly appreciate your efforts 🙌🏼. I wish you all the very best for your success 😊
Amazing Playlist! When I tried loading larger data (image data from your link) I think I encountered some discrepancy in your code (especially displaying the ternary for Loading data) = where you are mapping the state to the props. I solved it myself but I think the prob could be at my end as well since I wasn't copying every line n was doing it myself.
Hi. Could you answer my question? I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
Thank you Sir for this playlist, i watched all of it multiple times and helped me to understand react redux more & more. Keep doing this type of videos with the same type of explication. it will help us one day and at the same time u'll get more fans and more subscribers. I appreciate your work. keep going !!
Great tutorial, many thanks! Small notice from me, in my opinion it is not so good approach, to use double ternary conditional operator, especially when showing that in tutorial.
Hands down one of the best Redux tutorials out there!
Thank you
God bless you, Sir, God bless your children and your family.
Ameen
😂😂😂😂😂🙌🙌🙌
and your friends and your pets
And also your grand mother, grand father and your dead ones also ☠️☠️
May God also bless your handwork
The only Redux tutorial that actually taught me well how to use it instead of confusing me
Every time I get intimidated about approaching a new subject in React or Redux, I come to your videos and realize that I was scared for nothing. Thank you for all your hard work. God(or whoever you do/don’t believe in) bless you!
Definitely the best series about Redux. At first, Redux was just a mystery to me but you managed to make it crystal clear. Thank you so much! Oh by the way, it was a great, great, GREAT idea to explain first how Redux works without React. I think it helped a lot with my overall understanding of Redux with AND without React.
You're awesome Vishwas, you're actually giving Vishwas to every develper. Thanks for the awesome work man!
You know, I do feel like I have received Vishwas.
I have gone through this series a few times, and a few of the vids over and over to internalize the detail.
Vishwas - thank you VERY much for all of your time and care in producing this series. The content is very well organized. You are articulate, professional, focused, and clear, and you don't waste our time or yours with digressions.
Your other videos and series are all equally well produced. All of this is Greatly appreciated.
I have learnt redux within 3 days from your videos. Every topic is segregated into separate video and it is very useful🔥🔥 thanks
This is the best documentation I have seen in react. When I was learning React last year, it was complex and I got discouraged bcos the material I used complicated it for me... But now, I am enjoying React and the playlist here on everything react simplified it for me. All thanks to you, Vishwas. I am grateful
Hi. Could you answer my question?
I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
Great series!! i was really struggling wrapping my head into redux. But now i have a good understanding of Redux
I went through all of your redux videos and they were awesome.
You are doing it great.
You created course from very basic to intermediate that it has made so easy. I understood in just 2 days which was earlier frustating to me as I could not understand well when I went through other leacturers.
You are Mr. wonderful in context of react-redux.👏👏👏👏
best redux tutorial ever..was able to grab everything easily...now, to move on to redux saga, and reselect :)
I would like to add a comment after following through all the tutorials you have posted in this React-Redux series. It was a wonderful and best learning experience, now I have built quite a confidence when I use Redux. Thank You @Codeevolution.
Thanks a lot! I just finished the whole react-redux series. It's an amazing playlist! Wish you all the best!
Excellent videos concept wise very clear...i was very confused when i learned the redux but In this tutorial all confusion is clear now.All the best
andh ye , bari laik da playlist undu , yaan ini complete mante
Do you Job ?
Hi. Could you answer my question?
I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
@@mostafababaei3431 that user comes from rootReducer where for userReducer we gave user as the name, so that 'user' has state...users was in individual reducer which we gave to combine and then to store
When the data is successfully fetched and you are mapping it to show on the page, should be provided with a key prop.
Also when calling useState hook, react is requesting to pass fetchUsers as a dependency to the array.
Before watching this playlist, I used to have a great confusion.
But now everything is clearly understood.
I lost my fear on redux :) :)
Thank you sir.
I am speechless!! The instructor is very good at destructuring seeming difficult concepts and putting it as everyone can understand. Thank you very much, sir you are the best. The best react-redux tutorial ever. I subscribed right away.
This was the best on React Redux I watched so far
Thanks a lot for your clean approach of explaining react redux concepts in a simple and understandable way..
Redux was the most complex thing to learn. This tutorials clears up all my confusions. Thanks a lot and please keep up the great works!
BEST REDUX TUTORIAL !!! Thank you so much for these crisp, knowledgable and interesting videos.
I don't usually say this but this is by the best redux react-redux tutorial i have seen so far
very explicit and details
Perfect approach
You are Really Down to Earth Vishwas sir,what you have given to us in this react-series is unpayable,am very much thankful for every single word used in this series.
Best redux tutorial, resolves all the confusions from other videos!
Nice work! I like how you broke down the concepts into shorter videos. Definitely makes things easier to learn. Thanks for your work!
It is 1 AM right now and TBH, I have never enjoyed a tutorial this much to stay awake and code together. Thank you for gifting this! Cheers Bro!!
After finishing this series, I think I develop a feeling towards buy cake.
This tutorial is excellent.
I understood items that I didn't understand before.
From my point of view, Mr. Vishwas, your teaching technique is excellent, I say that you are one of my favorite teachers.
Thank you!
Now I’m going to watch Practical React playlist.
I had no idea what redux was, now I a very good understanding of it. Thanks!!!!
God, finally understood redux after going through a ton of tutorials around the world. You explain the best. GBY
I went through the whole react redux series excellent explanation. I have practiced thank you for your wonderful job 👍
Thanks so much dear. I have gone through your entire series and I can't tell you how much helpful it is for me. Thanks again.
Thank you . Finished the series and loved your teaching
just completed the whole series this is by far the best redux tutorial i've come across. Thannk you so much for the content and you've got good voice bro which makes it even more better 🙂
I never come across such a good explanation. Thank you so much.
Vishwas, thank you for taking the time to prepare a wonderfu react-redux tutorials. I enjoyed it and once again, you have used your nice presentation style to make things understandable.
Excellent tutorial, I finally could understood how redux works;
Thank you !!
you made Redux look easy for me, this is gold series, thanks🙏🏽
Not gonna lie... understood redux after struggle of 1 whole year. All credits to this series.
Thank you a lot. You first helped me with Hooks, and now with Redux.
All is now clear for me. Thank you again.
Life saving, really the best redux tuto on the whole internet!! Thank you so much!!!
Completed the React-Redux Playlist... Awesome playlist to learn🔥🔥
Thank you bro! This series save my life! Keep going and help everyone with your teaching skills.
One of the best react redux tutorials with proper explanation. Thank you so much sir !!
Awesome tutorial. I have watched other tutorials related to redux but i was not clear. AtLast i watched this now i am clear about how redux works. Thank you so much
Thanks Vishwash!!! You did a great job!
Wow. Marvellous! I'm speechless by the way. You are that good. Keep it up and thank you for your brief explanation through these videos!
This tutorial was all I need to understand react-redux. Thanks so much, Vishwas for such awesome content.
Thanks Codevolution for this amazing series on Redux. It's the only walk-through that didn't end up confusing me.
Definitely had fun watching your series, was really fun to learn :) hats off friend
You just earned one subscriber for lifetime❤️❤️Thanks a lot for clearing redux concepts.
This is the best tutorial i have taken on youtube. Thank you sir....
Hey!! Vishwas. Great tutorial, as usual. The way you teach things is very intuitive and easy to understand and grasp. Please continue making such content in coming future as well.
Thanks, man. It is the best explanation of redux with react I have ever come across.
Thank you, one of the best tutorials I have listened to, crystal clear explanations
Simply Super Tutorial. No nonsense .. straight to the point.
Great series, very clear. Helped me understand Redux without React today.
I've never seen that black magic you did with that crazy ternary operator chaining. Fascinating.
It is also called nested ternary operators.
You are a life saver. Completely got the redux concepts. Thank you.
Thanks a lot man!!! I went through all of them!! redux is a breeze !!
I'm really grateful to you for all this knowledge !
May my Lord Jesus bless you for this knowledge shared!! :)
this is by far the best explanation of redux and redux with react. keep up the good and thank you!!
Excellent! I watched the whole series and I will use this as a reference for future projects!
A big thumbs up to you Sir 👍🏼I'll recommend your tutorial to my peers.
Heartly appreciate your efforts 🙌🏼. I wish you all the very best for your success 😊
Excellent tutorial my man! Very clear and concise.
Thank you so much for this series! I really learned a lot about redux from the very basics up to the complex concepts.
Thank you v much for the course. Your way of explanation is simple and easily understandable.
Man, thank you very much for your course! It was a pleasure to watch it! Respect!
God Bless You Vishwash Sir...
thank you sir, i'm now in 2024 still learn redux before jump to redux toolkit for understanding the core concept
Watched all the videos in this series, it was simple yet really informative and halpful. Thank you :-)
Such an amazing series, thank you Vishwas brother.
Thank you once again!!
Fantastic series of videos. Clear and concise - very well done, thank you!
Completed tutorial , learned a lot. Thanks buddy. I owe you a lot.
This is on par with foreign tutorials. Thank you
Amazing Playlist! When I tried loading larger data (image data from your link) I think I encountered some discrepancy in your code (especially displaying the ternary for Loading data) = where you are mapping the state to the props. I solved it myself but I think the prob could be at my end as well since I wasn't copying every line n was doing it myself.
Hi. Could you answer my question?
I just have one question. In this episode, in mapStateToProps function, he used state.user. Why did he not use state.users? Because in userReducer.js file, in initialState object, we had users and not user. What is this "user" in "state.user"? I thought it came from the initialState we defined earlier. I'm confused.
thank you Vishwas.... for this awesome tutorial series
Very good lectures and explanations! You help me with my project!
Best tutorial of Redux on youtube
Best Redux tutorial in the internet
Finally found a gem! Thank you a lot sir
Thank you so much for your great tutorial. I have learned React and Redux from your tutorials.
Thank you Sir for this playlist, i watched all of it multiple times and helped me to understand react redux more & more. Keep doing this type of videos with the same type of explication. it will help us one day and at the same time u'll get more fans and more subscribers. I appreciate your work. keep going !!
once again a great series with a great teacher thank sir
Thanks :) I followed your entire tutorial. You explains very well.
this is a mind boggling effort
You are awesome awesome trainer Vishwas...I love your tutorials and the way you explain...
Thanks ..Nice Explanation ...Successfully Completed Redux Course
Thank you so much for your contribution to sharing your knowledge with us!!!
Don't forget to add a 'default' to your switch case when defining your userReducer :D was scratching my head for a while lol
Thanks. Excellent explanation. Loved this course.
AMAZING SERIES SIR, maza aagya yei krkei, everything's clear AF.
It was a great series. Thanks a lot, keep doing the great work.
Subscribed for more such great series and videos !
Best lecturer ever! ❤️
On video 4:41, line: 30, I think u should call fetchUsersRequest by adding parenthesis?,
BTW Very helpful video keep it UP (y) (y)
Great tutorial sir. It is the finest series on react redux on youtube. Can you please make a series on Redux Form?
Very good explanation and clearly explained the concepts. thanks to the authors
Thank you so much for this redux series 🥰
awesome! greatly simplified the react redux pattern.
Great tutorial, many thanks! Small notice from me, in my opinion it is not so good approach, to use double ternary conditional operator, especially when showing that in tutorial.