Redux toolkit crash course | Chai aur React Series

Поделиться
HTML-код
  • Опубликовано: 18 сен 2023
  • Visit chaicode.com for all related materials, community help, source code etc.
    Redux toolkit crash course
    Sara code yaha milta h
    github.com/hiteshchoudhary/
    Discord pe yaha paaye jaate h:
    hitesh.ai/discord
    Instagram pe yaha paaye jaate h:
    / hiteshchoudharyofficial
  • РазвлеченияРазвлечения

Комментарии • 3 тыс.

  • @jayrai18
    @jayrai18 10 месяцев назад +227

    13:30 History lesson ends here it's time to code
    31:33 All methods defined in the reducer() function have 2 main attributes "state" and "action"
    33:48 homework (Update method in reducer())
    1:05:50 Task reminded again by sirji

    • @youremotions5910
      @youremotions5910 6 месяцев назад +5

      bhai notes bnaye h?

    • @manjeeshchauhan9233
      @manjeeshchauhan9233 Месяц назад

      bhai update method nahi ho raha hai homework wala kaise karun?

    • @tahfeezmir471
      @tahfeezmir471 8 дней назад

      updateTodo: (state, action) => {
      state.todos = state.todos.map((todo) => todo.id === action.payload.id ?{ ...todo,text : action.payload.text }: todo.text);
      }
      // is this correct update method?

  • @thesoftwareguy2183
    @thesoftwareguy2183 6 месяцев назад +6

    Sir maza aagya ...mtlb mai bohot videos dhunte hue yaha aya ...and finally found a great channel and great teacher like you!!!
    Please keep on doing and make more videos on web development , it really helps me a lot ...😄

  • @thecalgarians4597
    @thecalgarians4597 Месяц назад +4

    BEAUTIFULLY explained, one of the most complex topics in Frontend dev with React is this, Redux/Redux Toolkit.
    Hats off to Hitesh ji for making it seem simple when it's actaully not.
    As they say, It's easy to make things difficult but difficult to make things easy and Hitesh ji scored 101/100 on making complex things so easy to understand. ❤

  • @rauchrodrigues272
    @rauchrodrigues272 4 месяца назад +1

    finally a worthy video i found which cleared all my doubts of redux .Thnx Hitesh you are a great Instructor and a good one at it

  • @shankaronline
    @shankaronline 9 месяцев назад +10

    28:00 The action parameter represents the action object that is dispatched to trigger the reducer. Actions are plain JavaScript objects that typically have a type field to indicate the action type and may include other data relevant to the action.
    You use the action.type to determine what kind of action is being performed, and you can also access the payload or other properties of the action object to make decisions on how to update the state.

  • @scitechplusexplorer2484
    @scitechplusexplorer2484 10 месяцев назад +6

    Thanks Hitesh sir, for explaining Redux in such a simple way. I was too running away from Redux and react, but now with your React series, I am willing to learn more and no more fear of Redux.

  • @user-zh3bg6os9r
    @user-zh3bg6os9r Месяц назад +1

    Loved the way you made redux look so easy and simple, I have to go through the code twice but still I was able to understand in better form. Keep making community better, More power to you.

  • @VaibhavSharma-ec6oe
    @VaibhavSharma-ec6oe Месяц назад +2

    Hello Sir, usually main comment nhin krta hoon videos pr aapne itna effort k saath yeh react playlist bnayi itne complex topic ko itna easy explain kiya thanks a lot for such videos

  • @user-ry3zi7bp6r
    @user-ry3zi7bp6r 10 месяцев назад +5

    A well explained redux-toolkit tutorial, now it is easy to use redux-toolkit in realtime projects. Thank you Hitesh Choudhary.

  • @nishanttomer2555
    @nishanttomer2555 2 месяца назад

    Awesome video sir! Loved it. I have realized over time that it is the same creator you love for some videos and it is the very same creator you might not relate in some videos. The key is to stick to the eternal mission of learning and eventually, you will love the journey. Just Love and Love

  • @rajkaregatu
    @rajkaregatu 3 месяца назад +2

    Bhot badhiya video hai, pura fundamentals of redux clear hogya, thank you hitesh bhaiya

  • @SikhleTu
    @SikhleTu 5 месяцев назад +7

    Sir mene apni puri kosis krli thi redux sikhne ki , bhut vidoes and documentation pdha pr kuch smzh ni aaya tha..
    Aaj jake clear hua ..
    Thank you so much ❤

  • @rishikeshrahane2333
    @rishikeshrahane2333 9 месяцев назад +4

    Thank you so much sir, for very short and precise as well as concepts clearing crash course!

  • @mihiram592
    @mihiram592 4 месяца назад

    I really appreciate how you breaks down complex concepts into easy-to-understand explanations.
    Thanks Hitesh sir, for creating such helpful content!

  • @johnay9761
    @johnay9761 10 месяцев назад +124

    Teaching about background history is the best thing in your lectures 👀

    • @chaiaurcode
      @chaiaurcode  10 месяцев назад +41

      It really is!

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

      yes sir @@chaiaurcode

    • @ATmilktime
      @ATmilktime Месяц назад +3

      @@chaiaurcode sir from were this todoReducer we use, during import in store.js, timestamp= 36:00

    • @thefreemonk6938
      @thefreemonk6938 Месяц назад

      Watch redux full playlist by Anurag Singh Pro Codrr

    • @darsheelchudal5197
      @darsheelchudal5197 Месяц назад

      @@ATmilktime It is coming form todoSlice.reducer which is exported from toDoSlice, the reason we write todoReducer is that there is no such strict naming convention when taking the import from the export statement where there is default. We have strict convention when it is imported from a const variable by destructuring it.

  • @babalookumar4867
    @babalookumar4867 8 месяцев назад +12

    importance of uses of two libraries:
    jab redux aaya tha to uske stepup me thoda jayada time lagta tha compare to contex api and debugging karne me v problem ja rhi thi. tab developers ne redux-toolkit introduce kiya jisme setUp or debugging easy ho gya kuchh redux functions ke dawara, isliye redux use karne ke liye ye dono libraries install karni jaruri hai.

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

    Reading the official docs of Redux feels like reading and learning Swift’s combine framework and other reactive frameworks which are very hard to learn.
    But the way you have simplified all the videos especially the context apis and this one hats off sir.
    Simply amazing.

  • @amritsapkota995
    @amritsapkota995 25 дней назад

    Your way of explanation is soo good and simple at the same time. Just i was looking to grab concept of redux and you made me very clear. Thanks! majja aagyaaa

  • @75_adityautekar84
    @75_adityautekar84 8 месяцев назад +66

    Sir Hitesh, you have entered my life as Loki, holding all the branches of development. Completed your ' Chai aur JavaScript' and now learning ReactJs. Your content is G.O.A.T 🙌, thankyou so much for helping us with your mind blowing explanation❤❤

    • @chaiaurcode
      @chaiaurcode  8 месяцев назад +31

      It's my pleasure🤩🤩

  • @official_asw_1999
    @official_asw_1999 10 месяцев назад +188

    Hello, Histash sir, I don’t usually comment on anyone’s videos, but after watching your series of JavaScript and now React, I just literally want to thank you, and I want to tell you that I am currently in Noida for a web development course, and I have spent 8 months here in the tuition. After going to an interview, I was not able to crack the interview, but then I saw your javascript series, and I found all those questions in you serious, and now I am ready for any interview. I just want to tell you that I spent almost 200000 but was still not able to crack the interview. But your content is so great that I want to tell everyone: don’t buy any paid courses or go for any tuition. I have a request for you now: please pin this comment so that someone will find it and also help him. Just learn from the code, aur chai. Thanks, sir, for the best content. May God bless you and your family.

    • @pratikrajput2066
      @pratikrajput2066 10 месяцев назад +6

      I feel You Bro

    • @laughwhy2641
      @laughwhy2641 9 месяцев назад +3

      Tnq bro , I am also thinking for join a institute for learn tech skills but according to your experience I think it is waste of time and money. Can you I am right?

    • @nitinmore7686
      @nitinmore7686 9 месяцев назад +1

      Yes, This is great series...
      Hiitesh ji, बहुत बहुत् धन्यवाद!!

    • @a092devs
      @a092devs 9 месяцев назад +1

      name ka spelling edit kar lo bhai

    • @samirbante8554
      @samirbante8554 8 месяцев назад +2

      Chai aur code dekhne ke baad interview crack hua ?😂

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

    Thank you so much for making this tutorial. For me this is the best lecture on redux so far...You made it so clear and easy to understand!

  • @087alok9
    @087alok9 10 месяцев назад +3

    Super easy explanation. I am thankful to learn react from this playlist. I don't know if I would have learnt from any other playlist then how many days would I have taken to learn react and would it even be good or not. But no doubt about this playlist, it is amazing !!!!

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

    Video aadhi samajh aagayi thi
    And the last explanation cleared all doubts and flow of working.

  • @yashpatil953
    @yashpatil953 4 месяца назад

    The way you add a relaxing element in your teaching is just amazing!

  • @Rohitsoni-dv8lw
    @Rohitsoni-dv8lw 9 месяцев назад +4

    Yes!! We enjoy History Part .13:30 History gave us knowledge of why new concepts are introduced and if you are an engineer this matters a lot to go into the depth of concept to actually start gathering why it is developed and what problems it faced and what are the new solutions to it. So sir, don't remove this part from the videos. This part is must to give a start to the video because if you are using the concept then you must know why you are using it over others.

  • @ahmadjavaid3631
    @ahmadjavaid3631 10 месяцев назад +3

    *_Thanks a lot, sir, Your topic explaining skill is truly exceptional and highly commendable._*

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

    Thank you so much Hitesh for making such a complex topic so easy and so crisp!! Really hatts off and keep mentoring !!

  • @nikhilgudadhe8785
    @nikhilgudadhe8785 4 месяца назад

    You are the only person who can teach such complex topics so effortlessly. Thanks a lot!

  • @mriduakaxxehacker
    @mriduakaxxehacker 10 месяцев назад +16

    Ab to 80% to cover ho soka hai React ka 😊❤

  • @ankushladani496
    @ankushladani496 10 месяцев назад +17

    React Redux Is used for making a bridge between react and core redux.

  • @neerajjain865
    @neerajjain865 2 месяца назад +1

    We want more videos like that , your explanation is very interesting

  • @nileshjain6960
    @nileshjain6960 9 месяцев назад +3

    Everything is good in this series..dope💥💥 just this part redux toolkit...is what i think will create some confusion.. i think you should first explain little bit about the redux then can essily teach about toolkit.. .. Other than that everything is🔥🔥

  • @user-ns7tc5yr2n
    @user-ns7tc5yr2n 10 месяцев назад +4

    I really appreciate you making those instructive videos . your efforts have been a huge assistance to me as i continue to study . my understanding of difficult ideas has improved because to your lucid explanations and interesting content 🧡🧡

  • @dopeshope4976
    @dopeshope4976 11 дней назад

    Context api wale video me it was very difficult to manage the state like objects ko dissect krna spread operator use krkre, it felt difficult tbh but is wale video me sir maja hi aagya. Appreciate your work!

  • @utkarshmehta4430
    @utkarshmehta4430 2 месяца назад

    Awesome detailed explanation. You are absolutely right about “chize complex to koi bhi bna deta hai, unhe aasan banane ke liye mehnat lagti hai”

  • @nitinmore7686
    @nitinmore7686 9 месяцев назад +9

    हितेश भाई,
    पुराणे जमाने वाके जो अद्यापक थे, ओ इतनेही, तन, मन से सिखाते थे....
    आप उनमेसे ही हो....
    सब आपके यहाँ सिखनेवालो के मन मे , आपके प्रती येही, भावना रहेगी....
    यर बहुत अच्छा आजका vdo था...
    मे इसे सुब ह 3.00बजे से देख रहा था, और समज रहा था....
    के बहुत लॉजिकल फ्लो को पकड के सिखाते हो....
    येही तो आपने जिन्दगी मे पाया है....
    पुरा भारत के हिंदी है...
    आपके यहाँ करोडो कंमेंट्स बनेंगे....
    हमे पता है...
    बहुत बहुत् धन्यवाद!!!!

  • @Khedhar108
    @Khedhar108 10 месяцев назад +3

    happy if you cover three.js , react fiber, framer motion in this series😍😍😍

  • @user-pz3kw2vw1d
    @user-pz3kw2vw1d 3 месяца назад

    best video of redux, till now i have seen so far, was unable to understand redux till today. Finally I can new concept done and dusted...
    Thanks @chai aur code. Big thanks and love to you @hitsesh chaudhary and team...❤❤❤❤❤❤❤

  • @rahulsuthar6922
    @rahulsuthar6922 3 месяца назад +1

    Bohot mza aata hai kisi bhi chij ki history Janne me... sir btaya kro aap hmesha hi history

  • @smittrivedi427
    @smittrivedi427 10 месяцев назад +82

    Redux toolkit ki notes
    1. Create Store - single source of truth
    it has configureStore
    introduce reducer
    2. Create Slice(functions) method(createSlice)
    Slice has name, initialState, reducers :{key: function}
    Access of two things (State, action)
    state = state value in the store
    action = action.payload
    export individual functionality
    export main source export
    3. Add Todo - Give values to State i.e Dispatch Courier = use method useDispatch()
    dispatch(addTodo())
    4. Take Values - useSelector((state) =>state.todos) state ka access chaiye
    variable me values lelo ek baar aagaie uske baad pure JS concept hai
    Note: Todo's Project basic nai hote xD :)

  • @tanishkagupta6864
    @tanishkagupta6864 6 месяцев назад +6

    We love history lessons please keep it up

  • @ranadas157
    @ranadas157 Месяц назад

    Thank you so much sir, aj tak redux bohot jaiga me para, but apka samjhane ka style is awesome, thanks again for solve my redux problem & all other information in redux..

  • @Shikha-ju4dv
    @Shikha-ju4dv 2 месяца назад

    Man , i needed to watch it 2-3 times but far better than watching 100 times on some other channel :)
    lots of respect to you sir !!!
    you made it look easy , hats off for real ._.

  • @yashrajsingh4215
    @yashrajsingh4215 10 месяцев назад +11

    Hello sir, not related to the video but have a request! I'd love it if you could make a short even on three js if we should use it or not or when we should use it, it seems like a really interesting tool!

  • @NinjaMS_
    @NinjaMS_ 4 месяца назад +5

    Never Imagined coding can be this addictive 😂😂

  • @blackopss017
    @blackopss017 10 месяцев назад +8

    A skilled and engaging teacher can take a seemingly dull , complex topic and make it interesting and understandable. You are legit bhaiya ❤️❤️❤️

  • @dr.jigneshmaheshwari5015
    @dr.jigneshmaheshwari5015 2 месяца назад

    Your lesions are very easy to understand and you have very good teaching skills. Appreciate for your help.

  • @shashiKPD
    @shashiKPD 11 дней назад

    This was an excellent video! The simplest explanation ever.

  • @vishalrajput8231
    @vishalrajput8231 10 месяцев назад +3

    Guruji is back❤

  • @rizwan-rn
    @rizwan-rn 10 месяцев назад +5

    Sir ji aap ki teaching ka bahut bahut shukriya aap ke javascript or React.js ke tutorials dekh kar maine acchi practice ke saath maine interview diya tha or Kal mujhe HR se feedback mila hai
    Ye apko batatey hua mujhe Khushi ho rahi hai ke Mai select hogaya hu..... thanks for your teaching ❤❤

    • @uhk2150
      @uhk2150 10 месяцев назад

      Kis company main or package kya hai....mera bhi interview hai kal

    • @rizwan-rn
      @rizwan-rn 10 месяцев назад

      @@uhk2150
      Confidential hai bhai sorry
      By the way best of luck for your interview

    • @uhk2150
      @uhk2150 10 месяцев назад +1

      @@rizwan-rn package btaana bhi confidential hai...?

    • @chaiaurcode
      @chaiaurcode  10 месяцев назад +9

      A big congratulations. Chai to bnti h isi baat pe

    • @rizwan-rn
      @rizwan-rn 10 месяцев назад +2

      @@chaiaurcode bilkul sir ji

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

    I love learning from this series!! hatts off sir

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

    You made it so easy to understand, thanks a lot sir!! :)

  • @nehabansal370
    @nehabansal370 4 месяца назад

    Thankyou so much sir. Enjoying learning from you.

  • @ramprasadyadav9303
    @ramprasadyadav9303 4 месяца назад

    Awesome Hiteh Bhaiya Thank you very much to make easy of there concept ...........

  • @wigaming620
    @wigaming620 4 месяца назад

    Thank you so much Hitesh Sir for this lecture.....I literally learned redux-toolkit in 1 time only watching your video first.💯🙌

  • @Sumitpatel-ww4ny
    @Sumitpatel-ww4ny 3 месяца назад

    Very nicely explained video about redux toolkit, recommended to every one. Thanks @hitesh for such a lovely video.

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

    This vdo is a gem!!
    Thank Youu Hitesh Sir for giving this awesome contents...💕

  • @aayushjha3623
    @aayushjha3623 4 дня назад

    Exceptional content quality. Great explanation. You made the difficult parts very easy.

  • @stelena-forever
    @stelena-forever Месяц назад

    Completed this Redux Toolkit tutorial today and I would say this is one of the best and the simplest tutorial to understand how RTK works. Thank you Hitesh sir for this amazing tutorial. ✌💛

  • @awaizdottech
    @awaizdottech 27 дней назад

    agaye hum bhi redux revision karne. pehle as a crash course dekha tha is baar react ki series cover karte hue aye hai

  • @brsstatusworldofficial8754
    @brsstatusworldofficial8754 26 дней назад +1

    Such a nice tutorial, full of valuable content. Love you sir ❤❤😍😍❤❤

  • @coder_07
    @coder_07 Месяц назад

    Wah
    ek dam structured way main samjhaya h sir g
    step by step - maza aaya padhne main 🤩
    Thank You Sir
    2 baar dekha h 😁

  • @PriyaToliwal
    @PriyaToliwal 2 месяца назад

    Thankyou so much Sir for this wonderful tutorial. Really, a To-Do app is not as simple as people say it is. You make learning fun and interesting. Please continue and keep us updated.

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

    Overall good and very well explained how simple and straight forward redux toolkit is and also the history of redux was also good having a knowledge about that. Overall awesome video👍👍

  • @avenue_shorts
    @avenue_shorts Месяц назад

    Thank you so much for your amazing Redux tutorials! Your clear explanations and practical examples have truly made a complex topic understandable and approachable. I finally feel confident in using Redux thanks to you!!

  • @farmanali6349.channel
    @farmanali6349.channel 3 месяца назад +2

    18:02 redux is an independant library, it works with js aaps, for different js frameworks, we have special redux support for each. so we have to install both redux and react-redux with react.js.

  • @zaheerahmad110
    @zaheerahmad110 Месяц назад

    Thanks a lot dear for such a video. Especially relating the history is superb. highly recommended video to learn about redux toolkit.

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

    history sections are infact great sir, makes us understand even better. Please don't ever even think of removing such sections in any course.

  • @user-kd2mg9nq2t
    @user-kd2mg9nq2t Месяц назад

    Hello Hitesh, fantastic! you must include the history lesson and its wonderful watching your RUclips tutorial. HP from Pakistan

  • @GoluSingh-zd9dz
    @GoluSingh-zd9dz 2 дня назад +1

    13:55 history ends
    started and thanks it helps alot hitesh bhaiya
    issue: baar baar har page me props paas krke user id wala issue the major issue tha ki instant id pass nhi hua to null se app crash ho jaata and suspense ,lazy bhi try kiye but context ka concept ya global variable ka concept jyada helpful raha ...
    For students agar ye issue aata h to try this solution..... it will help you.

  • @AmanGupta-nr6dk
    @AmanGupta-nr6dk 25 дней назад

    I always understood just the theory of redux but this is the first time I understood how it works at code level. Thanks for this video

  • @Ady-tf1jm
    @Ady-tf1jm Месяц назад

    Great explanation sir. Thoda beech mai confusing laga badme sab clear hogya. Thank you for your efforts.
    After 3 hours update functionality bana di. Khup bhari vatay.

  • @varunjain3947
    @varunjain3947 Месяц назад

    amazing explanation sir, you make the redux toolkit very simple for us. Thank you sir.

  • @saikumarlingam8181
    @saikumarlingam8181 2 месяца назад

    thank you so much sir , your teaching style is super , it
    make user to understand quickly and remember things easily

  • @piyushgaur9644
    @piyushgaur9644 3 месяца назад +1

    18:10 reason to use 2 different libraries is that redux itself is a independent state management library and if we want to use redux-toolkit then we need to separately install react-redux and redux-toolkit both

  • @sakshamjain7169
    @sakshamjain7169 2 месяца назад

    watched it, loved it and learned a lot from it. Thank you sir🙏

  • @prakharsrivastava5621
    @prakharsrivastava5621 19 дней назад

    Thank you sir. This is the best redux tutorial. Sb kuch ikdm clear ho gya. Mai bhi unme se hi tha jo redux se bhaagta tha 😅.

  • @decent719
    @decent719 4 месяца назад

    Teacher great ho to ye chota mote concepts to chai bnane se ziyada asan hn.... watching you and praying for you from Pakistan.........

  • @biju1656
    @biju1656 Месяц назад

    Learned a lot and specially the last 10 mins where you summarized the whole video helped me understanding the things which I have not understood in the first time. Thank you so much Sir for taking your valuable time and making content this deep for us completely free.

  • @indpriderdx5174
    @indpriderdx5174 28 дней назад

    kuch to achha kiya hoga hamne tab ja ke aap jaisa sir mila hame, hat's of to you ...! ur really good teacher

  • @tejaswinibeleshe2151
    @tejaswinibeleshe2151 28 дней назад

    Your contents are helpful to build complex project sir.
    Thank you!

  • @SatiDevi-cg1ck
    @SatiDevi-cg1ck Месяц назад

    This is my first video for redux toolkit .and really it is awesome.thank you sir 🎉❤

  • @sourabhsharma5988
    @sourabhsharma5988 Месяц назад

    I have seen many videos of Redux on RUclips but Sir, the way you have taught Redux is the best. Thank your Sir

  • @SahilKumar-dx4ed
    @SahilKumar-dx4ed Месяц назад

    Sir thank you so much to make things this much easier for us....😊

  • @MohdSameer-so9bt
    @MohdSameer-so9bt 22 дня назад

    Initially I thought redux is so tough to understand but you made it look easy. Thank you for this amazing lecture sir😊

  • @KnowledgeBoxMM
    @KnowledgeBoxMM 7 дней назад

    You’re so talented in teaching, I actually don’t know what is redux after watching your content is so clear like crystal

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

    Sir ji aa gye hai hum b, Series continue kr rhe hai, 2-3 bar video dekh rhe hai jb tk dimag me nhi baithti... great content🚀🚀, following you since 5-6 years.

  • @mdmusaddique_cse7458
    @mdmusaddique_cse7458 Месяц назад

    Amazing explanation sir ji. I had been avoiding redux for a long time, but not anymore.

  • @gigachad2419
    @gigachad2419 8 дней назад +1

    Understood everything.
    Your Content is pure GOLD.

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

    Its been few years, I have been watching your videos and no doubt there is a lot of hard work to produce the content and the best part about you is the quality of content and depth of knowledge you share.
    Keep it up Choudhary shaib.

  • @priyanshukumar6679
    @priyanshukumar6679 4 месяца назад

    Thanku sir concept to sab smjhate hai pr AAP jo ek long project bnwate usse bahut clarity milti hai thanku sir itna sab kuch free mein Dene ke liye
    App na ho to hum coding kab ki chod dete hai yeh sochte hue ki ye to bahut mushkil hai ❤❤❤😊😊😊😊😊

  • @tanishaguptacse2032
    @tanishaguptacse2032 19 дней назад

    Thank you so much sir for this amazing content.... update waali functionality include krne ki koshish jaari hai

  • @rishabhsharma9833
    @rishabhsharma9833 18 дней назад

    Thank you bhaiya ,you just made it so easy to understand❤

  • @BasitSachinwala
    @BasitSachinwala 4 часа назад

    well structured i think one and only in hindi and maybe in english too , best react series ever

  • @KrishnaReddy-qo7yg
    @KrishnaReddy-qo7yg 4 месяца назад

    Best one ever i have seen ...nice work bro...

  • @adamyasharma_0135
    @adamyasharma_0135 4 месяца назад

    finally completed this amazing lecture ,it was such a deep and vast topic took me days to complete it

  • @preetinarkhede5020
    @preetinarkhede5020 Месяц назад

    Best video of Redux toolkit. Started watching video with minimal knowledge and ended up with 100% knowledge plus hands-on confidence. That's what Chai and Code meant for. Thank you so much.

  • @CocTipstricks-um9rz
    @CocTipstricks-um9rz 3 месяца назад

    Best tech tutor in the youtube india history till now and forever. Love from Gujarat ❤❤❤❤❤❤

  • @UmraoBisht-pq7qy
    @UmraoBisht-pq7qy 2 месяца назад

    Thank you sir for Redux Toolkit crash course 😊🤗 it's really awesome!

  • @arjundogra2731
    @arjundogra2731 2 месяца назад

    Amazing video...with concise explanation 😀😎