React Redux Tutorial For Beginners | Redux Toolkit Tutorial 2021

Поделиться
HTML-код
  • Опубликовано: 27 дек 2024

Комментарии • 528

  • @nathace8639
    @nathace8639 3 года назад +137

    Finally, a redux tutorial that's not about a fucking counter
    Keep up the great work mate!

    • @PedroTechnologies
      @PedroTechnologies  3 года назад +15

      Hahaha this was one of the things I was scared about this tutorial! I saw that most redux tutorials used a counter and I didn't want to cause its not really applicable to real life.

    • @perfectwebsolutions
      @perfectwebsolutions 3 года назад +1

      he didn't use counter app but he did used Hello World though, isn't it 😂

    • @zahramohebi7375
      @zahramohebi7375 3 года назад

      exactly

    • @johnddonnet5151
      @johnddonnet5151 2 года назад

      Don't you need a counter bro? Or 50 ways to make it in react?

    • @tomasburian6550
      @tomasburian6550 2 года назад

      Truth be told, we are all concerned about login in the first place. Now imagine the horror of figuring it out with TypeScript. I'm not sure there is one decent tutorial out there. :P

  • @110Genesis
    @110Genesis 3 года назад +110

    Pedro, you're a truely gifted tutor. I feel as if you always understand exactly what I need to hear and see to actually understand the subject and not just repeat after you. Thank you so much!

    • @PedroTechnologies
      @PedroTechnologies  3 года назад +10

      Thank you so much! I love hearing this because it motivates me so much!

  • @angusedwards8293
    @angusedwards8293 2 года назад +6

    Never commented on one of these react videos before but brilliantly explained and you leave nothing out without going into unnecessary detail. perfect level of explanation. why you do this for free baffles me :D Superb stuff. thank you!!!

    • @PedroTechnologies
      @PedroTechnologies  2 года назад

      I appreciate that hahaha I am glad you liked the video :)

  • @halfsercleturtle894
    @halfsercleturtle894 2 года назад +18

    Really solid tutorial. Great balance of walking through the code and stopping to explain key ideas/definitions without getting bogged down in jargon. I'm new to redux and this was super digestable. Subscribed and shared with my front end class in Canada.

  • @leomac3464
    @leomac3464 5 месяцев назад

    Been researching Redux for two days and your vid was the one the cut through. Your explanations weren't bloated; the video wasn't too long; and it wasn't about creating counter. Liked and subbed.

  • @fancyAlex1993
    @fancyAlex1993 2 года назад +2

    I can testify this is one of the best tutorial on Redux I have ever seen.

  • @matt112fly
    @matt112fly 2 года назад +3

    THIS IS THE BEST REDUX TOOLKIT TUTORIALON RUclips!!! I WISH I COULD PAY YOU TO MAKE MORE OF THESE VIDEOS !!! LOVE YOU MAN I FINALLY GOT MY SHOPPING CART TO KIND OF WORK

  • @alexgrinberg1888
    @alexgrinberg1888 3 года назад +21

    Pedro, great course! Really what I need! I was desperately looking for a React/Redux course with example of creating Slices. And I found it!!! Thanks a lot! Please continue your React-oriented courses, it really helps!

  • @migueljara9399
    @migueljara9399 2 года назад +5

    Pedro thank you so much! I've been trying to learn redux for such a long time and every tutorial was quite bad. Your tutorial was easy and begginer friendly that allowed me to understand what everything was. Thank you!

  • @anshab123
    @anshab123 Год назад +1

    I was stuck with Redux, and I didn't know what to do, so I watched your video. Now I'm very happy! It's one of the best tutorial videos I've ever seen.

  • @thydevdom
    @thydevdom 2 года назад +1

    Why I beat myself watching other tutorials before checking to see if PedroTech has one is beyond me. Once again, thank you so much!

  • @adityaaufar4565
    @adityaaufar4565 2 года назад +1

    whenever I need the simplified version of the explanation, I come to your channel. Good Stuff

  • @akj3344
    @akj3344 2 года назад +8

    I regret not watching this video before.

  • @bhuvaneshwaran2311
    @bhuvaneshwaran2311 2 года назад +3

    I really felt Redux is hard to learn but this video made me to understand redux so easy. Super Dude keep going....

  • @omrishooshan9784
    @omrishooshan9784 3 года назад +1

    Im not sure if you are a senior or whatever but your ability to explain tech is on another level, good job mate

    • @PedroTechnologies
      @PedroTechnologies  3 года назад

      Thank you, I really appreciate the support! I am starting my junior year in 1 month :)

  • @stWOLF-vl5lj
    @stWOLF-vl5lj 5 месяцев назад

    🎯 Key points for quick navigation:
    00:00 *📚 Introduction to Redux and its utility in React applications*
    - Overview of Redux as a state management library in React.
    - Challenges for beginners due to boilerplate code.
    - Importance of Redux in job requirements and existing codebases.
    02:35 *🌳 Understanding state management in React and the need for Redux*
    - Explanation of React's useState hook for local state management.
    - Challenge of passing state through props in deeply nested components.
    - Introduction to Redux store as a centralized solution for global state management.
    05:38 *🔄 Implementing Redux in a React application*
    - Setting up Redux with Redux Toolkit in a new React project.
    - Installing necessary dependencies including Redux and React Redux.
    - Creating a Redux store and using Provider to connect it with React components.
    21:54 *🔧 Redux Toolkit's `createSlice` function simplifies Redux setup.*
    - Simplifies Redux setup with less boilerplate code.
    - Organizes reducers, actions, and initial state in a structured way.
    - Encourages modular and cleaner code organization.
    24:24 *🔄 Creating Redux reducer functions with `createSlice`.*
    - Demonstrates how to define reducer functions like `login` for state updates.
    - Explains the role of `state` and `action` parameters in Redux reducers.
    - Shows how to use `payload` to update state based on dispatched actions.
    30:01 *🎨 Connecting Redux state to React components using `useSelector`.*
    - Utilizes `useSelector` to access Redux state within React components.
    - Shows how to retrieve specific state values like `user.name` and `user.email`.
    - Illustrates dynamic rendering of component UI based on Redux state changes.
    36:09 *🚪 Adding a logout functionality to reset Redux state.*
    - Implements a `logout` action to reset user-related state values.
    - Utilizes a constant `initialStateValue` to maintain consistent state structure.
    - Demonstrates how to dispatch actions like `logout` to modify Redux state.
    40:11 *🎨 Adding new Redux slices for managing multiple states.*
    - Introduces the concept of managing separate states with Redux slices.
    - Discusses the organization of multiple slices within a Redux store.
    - Highlights the modular approach to adding new reducers and actions.
    42:15 *🎨 Handling local and global states in React*
    - Discusses managing states locally versus globally in React applications.
    - Highlights the use of React hooks like `useState` for local state management.
    - Emphasizes the integration of Redux for managing global states across components.
    43:38 *🛠️ Creating reducers for application themes*
    - Demonstrates creating reducers using Redux for managing application themes.
    - Shows how to set up a new slice in Redux for handling theme-related states.
    - Illustrates the implementation of actions like `changeColor` to modify theme colors dynamically.
    48:28 *🖌️ Integrating theme changes across components*
    - Explains how to integrate Redux-managed theme changes across different React components.
    - Utilizes `useSelector` to access and apply theme colors globally within the application.
    - Shows a practical example of dynamically changing styles based on Redux state updates.
    Made with HARPA AI

  • @thangnd50
    @thangnd50 3 года назад

    I felt like i hit a major stumbling block named Redux when i first saw it. Everything changes now that i can always take a look at your tutorial. I really can't put into words how grateful I am. Thanks to you, I, am able to take the first and most important step, which is to understand the logic behind those lines of code. Keep pushing it my friend!
    HIGHLY RECOMMENDED. To anyone who happens to watch this video, this is super helpful!

  • @henryirabor6178
    @henryirabor6178 7 месяцев назад

    So this is the redux I was so afraid of. I can't believe it's this easy. Thanks Pedro. You're videos never disappoint.

  • @magamboisaac7602
    @magamboisaac7602 3 года назад +2

    i was scared of learning redux but you have given me the confidence thank you so much wish i could like the video again

    • @PedroTechnologies
      @PedroTechnologies  3 года назад

      This makes me happy :) Believe me, i postponed learning it cause I was scared too!

  • @ob2825
    @ob2825 2 года назад +7

    Way better than any other redux tutorial. Perfect !

  • @behnamhamidi-r3j
    @behnamhamidi-r3j Год назад

    This was the best video ever! Thank you so much, I tried learning from many other RUclips Channels, but they confused me more, you started from the scratch and explained very simple. Thanks a lot.

  • @omegauwedia5158
    @omegauwedia5158 3 года назад +45

    Bro, thanks for this great tutorial, I've been learning the redux toolkit for a while now😥, but all the examples are just counter, which makes it difficult to implement in real life. This video just make it a whole lot easier for me. Thanks Man, God bless you.

    • @PedroTechnologies
      @PedroTechnologies  3 года назад +3

      Hahaha thank you! I appreciate your support :)

    • @marbles1339
      @marbles1339 2 года назад

      It's either a counter tutorial or a todo list tutorial but we're not gaining knowledge about how to implement it in big real life projects. Thank you for making a different example @PedroTech

  • @KimCarlos12
    @KimCarlos12 Год назад

    I watched ur react ecommerce website tutorial from start to finish. Loved it since i learned something new. I've used context for quite some time. thought i knew all there was to know. but u showed me that there was something that i didn't. Love u man. Keep up the good work dude

  • @ubivision
    @ubivision 3 года назад +3

    Thanks mate. I finally have some idea about the react-redux coding convention.

  • @aes0p895
    @aes0p895 Год назад +1

    This is twice in a row I have been thanking myself for choosing your video over others. First of all, I don't want to use Redux and I don't have to. Thank you sir, may I have another? (subscribed)

  • @Habbodonald
    @Habbodonald 2 года назад +3

    Estou fazendo uma disciplina na faculdade de computação que envolve JS e React e seus vídeos tem me ajudado pra caramba! Parabéns e obrigado pelos vídeos e todo conhecimento compartilhado de forma tão didática. Seu inglês também é sensacional!

  • @mountskit2228
    @mountskit2228 3 года назад

    Never understood redux even when I watched nearly 10 videos, no one on RUclips explained it clearly. I have been watching your channel for quite a while now, all your videos are very helpful and this video really helped me understand redux very easily. It was a very good example of user state and thank you so much.

  • @mnaresh3382
    @mnaresh3382 2 года назад +1

    great explanation, I had taken a react course from udemy and I could not understand redux section and was searching for a better tutorial, and this was perfect , exactly what I need to know. Thank you for the great work.

  • @SvetaSveta-ms4hi
    @SvetaSveta-ms4hi 3 года назад +11

    I'm lovin' it! Thanks a billion for making such extremely useful videos for us. Your hard work will pay off down the road for certain.

    • @PedroTechnologies
      @PedroTechnologies  3 года назад +1

      Thank you! You have no idea how much a comment like this one motivates me! I am happy I could help :)

    • @SvetaSveta-ms4hi
      @SvetaSveta-ms4hi 3 года назад +1

      @@PedroTechnologies Thank You! Your channel is one of the best ones. I kid you not.

  • @shengaithedraconic
    @shengaithedraconic 2 года назад

    I'm a new graduated from university software engineering depeartment was struggle with changing working area game programmer to frontend programmer. I was confused that there is so much to learn about react js but your video is more comfortable than any classes that I took from university. Thank you such an amazing content to keep the people not giving up from improve themselves. Got a subscriber and I 'll recommend you to my friends!

  • @infohub3709
    @infohub3709 2 года назад +6

    Thanks Pedro. Your tutorials are quite mind blowing. That's why I always check out your video list for any topic I wish to learn. If only I could have a direct communication with you for proper directives.

    • @PedroTechnologies
      @PedroTechnologies  2 года назад

      I am happy to hear that my videos are helping you out :) I do have a discord where i interact with my subs from time to time, you should check it out!

  • @rubitiara
    @rubitiara 2 года назад

    These few days I have been going through many tutorial videos and trying to understand redux but still could not grab the full concept. Until I found your video today ...it indeed helps me a lot to undertand this complex library ...I totally agree you that redux toolkit is making redux millions times easier to understand and work with :D Thank you very much ! :)

  • @paulandres7074
    @paulandres7074 2 года назад

    Best tutorial I found on RUclips. I'm new to Redux and I'm suggesting this to beginners like me. Thanks Pedro!

  • @random__weeb
    @random__weeb Год назад

    Thanks alott for this man! You explained Redux really well. Thanks again.
    For those considering to watch this video, this video explains the use of redux and redux toolkit using a simple usecase of passing values between two children. Pedro does a great job at explaining the need for redux and also explains it in a beginner friendly way. You can definitely watch this video without a second thought!

  • @guillermohinostroza1016
    @guillermohinostroza1016 2 года назад +1

    What a nice introduction to Redux! Thanks a lot for sharing it.
    Well, in the last part of your tut there is a chance to enter an invalid value for color, as developers we can avoid this using the input type color:
    return (

    {
    setColor(event.target.value)
    }} value={color}/>
    dispatch(changeColor(color))}>CHANGE COLOR

    )
    at that level we can even drop the CHANGE COLOR button dispatching the changeColor() event directly from the color picker:
    return (

    {
    setColor(event.target.value)
    dispatch(changeColor(event.target.value))
    }} value={color}/>

    )
    we can be more concise even:
    return (

    {
    const c = event.target.value
    setColor(c)
    dispatch(changeColor(c))
    }} value={color}/>

    )
    today I learned a lot, thank you again.

  • @MagaDaniel
    @MagaDaniel 2 года назад +2

    Simple, clear, and straight to the point! best tutorial for beginners on redux! thank you.

  • @oyeniyimichaelbarry2545
    @oyeniyimichaelbarry2545 8 месяцев назад

    Finally a redux tutoria thats not about counter, this is the best redux tutorial so far, i wonder why its not ranking the first for redux tutorial seach.. well explained!

  • @ssk7690
    @ssk7690 Год назад

    When you explain stuff, I can understand that easily. You are a great communicator who can convey his message with great tutorials. This was amazing!

  • @utshobarua2324
    @utshobarua2324 2 года назад

    Pedro you are really a gem. I am also pretty much tired with learning redux with counter. Finally there is someone who can really helpful why i need redux and how it makes it easy. Thank you for your video. I am looking forward for a video with all of them. Like CRUD, Full MERN and obviously with redux

  • @rounakbhattacherje3426
    @rounakbhattacherje3426 Год назад

    after 1 week of regular searching for a good tutorial for redux and getting frustrated, I finally found this gem. Thank you, man! ultimately, I got it! You are a great teacher

  • @muskmilanmilkshakemmm3880
    @muskmilanmilkshakemmm3880 Год назад +2

    i really needed this !! thank you!!

  • @adhy612000151
    @adhy612000151 7 месяцев назад +2

    Thanks Pedro!!!
    You the best!!!

  • @yasin2277
    @yasin2277 3 года назад +1

    This was not one of the most but THE MOST perfect redux tutorial I've seen. Keep up the greater work buddy. and Thanks ❤

  • @ahmed19567
    @ahmed19567 2 года назад

    one of the best tutorials I have ever watched on react related topics.

  • @mhlib7569
    @mhlib7569 2 года назад

    Great tutorial, Pedro! I'll be subscribing. I watched a few other in-depth tutorials but got lost pretty easily right in the beginning. You really broke down in simple terms what does what and for people like me who are very new to all this, it's not as helpful when devs use all this complicated jargon without explaining what it means first.

  • @OmriTurge
    @OmriTurge 3 месяца назад

    hands down to the best redux tutorial I have ever seen

  • @Ridbay
    @Ridbay Год назад

    Thanks so much.. You really simplify it.. I used to be afraid of Redux but now, You make me fall in love with it.. Thanks once again

  • @tomasburian6550
    @tomasburian6550 2 года назад +4

    Fantastic explanation for beginners. Thanks! Btw, I've been looking into the original Redux where you write cases, but Slices pretty much took over now althogh it's harder to figure it out with TypeScript.
    For even better way of explaining this I'd recommend using the Redux add-on for Chrome where you can see exactly how the states are structured and which values they hold. That cemented the whole knowledge for me and now it's a delight to work with.

  • @debarshipal8275
    @debarshipal8275 2 года назад

    This is the best Redux tutorial out there. You have done an amazing job in planning out the tutorial and cover different cases. Thank you. I have subscribed

  • @namankeshari7332
    @namankeshari7332 Год назад

    Thanks man! This was really helpful! You mentioned exactly why I was looking for redux tutorial because a job posting requires it XD. Thanks a lot man! This was very easy to understand and relatable with other state management libraries.

  • @Dnyaneshwar.Borkar
    @Dnyaneshwar.Borkar 2 года назад

    Simple Explanation, I spend some time on other training, but finally ended here with good understanding.

  • @ALi-Sloom
    @ALi-Sloom Год назад +1

    I really can't thank you enough for all the tutorials you had to do

  • @kuoyulu6714
    @kuoyulu6714 8 месяцев назад +1

    thanks alot, i am trying to learn redux, but most the tutorial are like 4 years ago lol

  • @sardermonowarulaminrahil9595
    @sardermonowarulaminrahil9595 3 года назад

    So far, the best redux tutorial that I've seen!!! Keep up the good work buddy!!!

  • @Aman_Sachan
    @Aman_Sachan 2 года назад +2

    Pedro, bro I found your channel just 2 days ago and I'm really thankful that you've explained the difficult concepts in a very simple and beginner friendly manner. Keep Going 👍😁

  • @sudheerkumartirandas5831
    @sudheerkumartirandas5831 3 года назад +1

    Excellent! Thanks Pedro

  • @SheshagiriPai
    @SheshagiriPai 3 года назад +1

    The most concise and easy to follow Redux tutorial

  • @enockomondi6588
    @enockomondi6588 2 года назад +1

    Thank you so much for this video. I have been struggling with this concept but finally you saved me.

  • @nicklandreth2527
    @nicklandreth2527 3 года назад

    This must be the simplest way you could possibly have explained this. Well done!

  • @alexholmes3165
    @alexholmes3165 Год назад

    Great tutorial, very well put together and explained well, one of the best i have watched so far!!! Thanks Pedro !!

  • @az1nn
    @az1nn 2 года назад +5

    Pedrão, muito obrigado por essa aula, consegui entender perfeitamente a implementação do Redux em menos de uma hora! Tu é foda mano, obrigado por esse e por todos os outros videos!

  • @randerins
    @randerins 3 года назад +1

    Cara, que baita mão na roda esse tutorial! Estou quase me formando num bootcamp fullstack e o ultimo projeto exigido requere React + Redux + Rails API. Sempre ouvi falar que Redux exige essa certa configuração tediosa, mas tua excelente explicação me deu mais clareza e incentivo. Muito obg!

  • @sahilkc23
    @sahilkc23 3 года назад +2

    The explanation was very really good that I fast-forwarded and completed it in 26 mins, also when I was going through the redux and redux toolkit docs there were more topics about Normalization and optimization do we really have to know that? and next video should be on data fetching with redux toolkit displaying loading indicators. Loved it, man.

  • @kanayayaya-wb6nh
    @kanayayaya-wb6nh Год назад

    Pedro, you are an excellent teacher, beside you are a great programmer, because a lot of people can be a programmer, but not a good teacher like you, thanks for the tutorial pedro much love from indonesia

  • @mmhef
    @mmhef 2 года назад

    This was very helpful. After watching 27 examples of the Counter app, I still didn't get the big picture. Your video clarified some basic concepts I was missing. Thanks!

  • @kingpirates
    @kingpirates 3 года назад +4

    Vídeozão Pedro, estou muito afim de começar meu canal também, já fiz, logo intro e tudo, to roterizando o primeiro vídeo, provavelmente irei fazer como você, todos os vídeos em inglês, parabéns pelo vídeo mais uma vez! Tu é uma inspiração pra mim!

    • @PedroTechnologies
      @PedroTechnologies  3 года назад +2

      Fico felizão em ouvir isso mano! Sempre é bom crescer a comunidade BR. Boa sorte!

  • @kunmiamzat929
    @kunmiamzat929 2 года назад +1

    And this isn't a paid course!. You rock!!!.

  • @rStelmach
    @rStelmach 2 года назад

    Thank you for your videos, switching from Vue to React is like a breeze with your uploads :D

  • @tonegrail650
    @tonegrail650 Год назад

    Great tutorial! This is the most clear and concise one on the web! Thank you Pedro!

  • @minhthien8651
    @minhthien8651 2 года назад

    OMG ! Finally, I understand how it works... Thank you very much Pedro !

  • @hbela1000
    @hbela1000 2 года назад +2

    in just one word: excellent.

  • @akhilkumarsingh5041
    @akhilkumarsingh5041 2 года назад +2

    pedro never dissapoint

  • @benitamichael6856
    @benitamichael6856 5 месяцев назад

    Finally, I found a channel that makes things make sense 🙌

  • @AryanRaj-zt6cq
    @AryanRaj-zt6cq Год назад

    Finally found a tutorial that helped me understand redux! Thanks to you man!

  • @H3DI_
    @H3DI_ Год назад

    thank you, you helped me a lot because I'm trying to work with someone in react and I really needed this right now

  • @andy0401ify
    @andy0401ify 7 месяцев назад

    Thank you for putting this together. Really thoughtful explanation and examples! Amazing!

  • @utbhargav
    @utbhargav Год назад

    Nicely Explained. Great one to understand the Redux Store, Slice and Reducer

  • @woofcode3383
    @woofcode3383 3 года назад +1

    Thanks so much Pedro! Happy new year!

    • @PedroTechnologies
      @PedroTechnologies  3 года назад

      Happy new year!

    • @woofcode3383
      @woofcode3383 3 года назад

      @@PedroTechnologies i just watched it again. I'm sure everyone else does the same, to watch it 2 - 3 times to really let is sink in. You are great! I love how you explain stuff clearly. Maybe make bigger project with React-Redux? Thanks. Good luck with your channel.

  • @buituyen9484
    @buituyen9484 2 года назад

    The most easy-to-understand redux tutorial ever. Thanks you. helped me a lot.

  • @Jatin-nr1bj
    @Jatin-nr1bj 2 года назад

    Redux toolkit is why I watched this video. And also cause Pedro is a great teacher.

  • @girojudo
    @girojudo Год назад

    Awesome work my man, you really nailed the whole explanation! Keep up the good work!

  • @KimCarlos12
    @KimCarlos12 Год назад

    Love the video. Heres a power tip. just type the function or module u want to import and let vscode do all the importing. Saves me a lot of time and it might just save u some too. Overall, the video is a killer. U'v got the teaching skills of a senior software developer. Keep up the good work. im 14yrs old by the way. Started programming when i was 11.

  • @jyothiswaroop2964
    @jyothiswaroop2964 2 года назад

    I am new to Redux, but I really understood this tutorial! Thanks a lot Pedro!

  • @udaykulkarni5639
    @udaykulkarni5639 2 года назад

    I disabled my RUclips Add block to show my appreciation

  • @KaushalKulkarni-pv3dc
    @KaushalKulkarni-pv3dc Год назад

    Thanks a lot, simplified things for me, it was really hard to cope up with other redux tutorials.

  • @eliyahutarab4862
    @eliyahutarab4862 2 года назад

    Thank you very much , i wanted to learn this for so long and the way you are explaning this is just very easy to understand thank you

  • @superman1337H
    @superman1337H Год назад +1

    thanks bro, thanks to you i really understand about redux toolkit 🙏

  • @sebascalderon5842
    @sebascalderon5842 3 года назад +1

    Dear Pedro,
    I am new to React, I am taking a course and reinforcement with your videos.
    Your tutorials are new and have helped me a lot, especially this video.
    I'm going to take this into consideration, to apply it to my user CRUD.
    I hope you keep uploading more content.
    Kind Regards,
    Greetings from Chile.

  • @abdullohkarimov4396
    @abdullohkarimov4396 3 года назад

    Amazing tutorial! You deserve a subscriber from Uzbekistan :)))

  • @murat6018
    @murat6018 3 года назад +1

    Wonderful, concise, simple explanation. Thank you Pedro!

  • @abhishekmaheshwari1638
    @abhishekmaheshwari1638 3 года назад

    Awesome Explaination, You deserve more subs bro.

  • @Waqasda
    @Waqasda 2 года назад

    it's definitely an advanced topic but you nailed it pedro. Thanks

  • @afk8726
    @afk8726 3 года назад

    Hi Pedro, this is an amazing started guide to Redux! i used this guide for my project, the only thing i had to add was manage the state to the local storage for a consistent state in the app..

  • @drop9077
    @drop9077 3 года назад +1

    34:55 Imagine I did this once, then I want to do it again but only to change the age and leave the rest the same so I use "dispatch( login ( { age:21 } ) );" It will update name and email aswell and its values will be undefined, how do I update just one value without touching the rest nor having to spcify the same values for it remain the same?

  • @yaroslavoz
    @yaroslavoz 3 года назад

    Man, this is amazing! Huge thanks and huge hugs! It helps a lot with my work!

  • @rezakamali-n8d
    @rezakamali-n8d Год назад

    Thank you so much i really needed a different example than simple counter project, now i understand all the process

  • @cryptomallu6271
    @cryptomallu6271 Год назад

    Bro thanks for your all react js and redux videos. Ur videos helped me to get my first job 😊❤.u are one of the best teacher

  • @iheachochristian807
    @iheachochristian807 2 года назад

    You are a great teacher. I now understand Redux very well.

  • @akramnarejo6221
    @akramnarejo6221 3 года назад +1

    You have really done a great job, explaining concepts. hope to get more from you.

  • @therandomlist8084
    @therandomlist8084 2 года назад

    The best redux toolkit tutorial for beginners. Thanks a lot man!