Redux toolkit crash course | Chai aur React Series

  Рет қаралды 413,521

Chai aur Code

Chai aur Code

Күн бұрын

Visit chaicode.com for all related materials, community help, source code etc.
Redux toolkit crash course
Sara code yaha milta h
github.com/hit...
Discord pe yaha paaye jaate h:
hitesh.ai/discord
Instagram pe yaha paaye jaate h:
/ hiteshchoudharyofficial

Пікірлер: 4 000
@jayrai18
@jayrai18 Жыл бұрын
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 Жыл бұрын
bhai notes bnaye h?
@manjeeshchauhan9233
@manjeeshchauhan9233 7 ай бұрын
bhai update method nahi ho raha hai homework wala kaise karun?
@tahfeezmir471
@tahfeezmir471 6 ай бұрын
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?
@DARKCODES-e2f
@DARKCODES-e2f 5 ай бұрын
@@tahfeezmir471 what about this one update: (state, action) => { const todo = state.todos.find((item) => item.id === action.payload); todo.title = action.payload; },
@mohanrana9425
@mohanrana9425 5 ай бұрын
@@tahfeezmir471 yes bro but how can we implement it can u share me
@babalookumar4867
@babalookumar4867 Жыл бұрын
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.
@thecalgarians4597
@thecalgarians4597 8 ай бұрын
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. ❤
@muheebpasha543
@muheebpasha543 4 ай бұрын
1. React-Redux: Connecting Redux with React : React-Redux is the official binding library that connects React with Redux. It provides hooks like useSelector, useDispatch, and Provider that allow React components to interact with the Redux store. Key Features of React-Redux: a. useSelector: Allows React components to read specific slices of the Redux state. b. useDispatch: Provides a way for components to dispatch actions to update the Redux state. c. Provider: Connects the React component tree to the Redux store, ensuring that all components can access the store. d. React-Redux focuses on providing a seamless way to integrate React and Redux together, handling optimizations like preventing unnecessary re-renders of components when state changes.
@Smit-j8n
@Smit-j8n 7 ай бұрын
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.🤟🤟
@VaibhavSharma-ec6oe
@VaibhavSharma-ec6oe 7 ай бұрын
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
@thesoftwareguy2183
@thesoftwareguy2183 Жыл бұрын
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 ...😄
@souravsamanta7625
@souravsamanta7625 2 ай бұрын
Today is 23rd Nov, 2024. I am learning Redux. I Solved Update Todo task with Context API. It also can be solved through store management. But I tried the Context API because it is complex for me. Thank You Hitesh Sir, You are the best in the industry.
@Joborbit
@Joborbit Ай бұрын
are you from noida
@scitechplusexplorer2484
@scitechplusexplorer2484 Жыл бұрын
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.
@johnay9761
@johnay9761 Жыл бұрын
Teaching about background history is the best thing in your lectures 👀
@chaiaurcode
@chaiaurcode Жыл бұрын
It really is!
@Niteshmaurya1234
@Niteshmaurya1234 11 ай бұрын
yes sir @@chaiaurcode
@ATmilktime
@ATmilktime 7 ай бұрын
@@chaiaurcode sir from were this todoReducer we use, during import in store.js, timestamp= 36:00
@thefreemonk6938
@thefreemonk6938 7 ай бұрын
Watch redux full playlist by Anurag Singh Pro Codrr
@darsheelchudal5197
@darsheelchudal5197 7 ай бұрын
@@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.
@75_adityautekar84
@75_adityautekar84 Жыл бұрын
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 Жыл бұрын
It's my pleasure🤩🤩
@SeekhLo7870
@SeekhLo7870 4 ай бұрын
Hello, HiteshSir. I am a FrontEnd Developer right now with Skills of HTML, Css, Js only. WhenI started Learning of React in Sep 2024, Currently I am Learning React From Your Videos. Its Thank You Much for a very good content for Free. Thanks Your Hard work.
@patelkathan15
@patelkathan15 11 ай бұрын
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.
@Azharuddin-khan
@Azharuddin-khan 6 ай бұрын
After this lecture do you got to know what reducer is?
@mriduakaxxehacker
@mriduakaxxehacker Жыл бұрын
Ab to 80% to cover ho soka hai React ka 😊❤
@DavinderSingh-d8j
@DavinderSingh-d8j Жыл бұрын
A well explained redux-toolkit tutorial, now it is easy to use redux-toolkit in realtime projects. Thank you Hitesh Choudhary.
@FaisalShabbir-s4o
@FaisalShabbir-s4o 4 ай бұрын
MashAllah, I've attended many Redux lectures, but this one explained the entire flow from start to finish so well that I finally understood it. I loved how you made Redux seem so easy and simple. I had to go through the code twice, but I was able to grasp it much better. Keep contributing to the community. More power to you!
@vatslalit1408
@vatslalit1408 6 ай бұрын
The ultimate guide for redux toolkit and redux history ..... iske baad kisi tutorial ki zaroorat hi nhi . Thanks Hitesh Sir...
@Azharuddin-khan
@Azharuddin-khan 6 ай бұрын
After this lecture do you got to know what reducer is?
@qasimmughal4696
@qasimmughal4696 4 ай бұрын
@@Azharuddin-khan watch geekyshows redux video before this video
@CINEBEATSOFFICIAL
@CINEBEATSOFFICIAL Жыл бұрын
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.
@smittrivedi427
@smittrivedi427 Жыл бұрын
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 :)
@haridaspawar3579
@haridaspawar3579 10 ай бұрын
Thanks Brother😇
@prakashnandan7337
@prakashnandan7337 10 ай бұрын
nice
@adityadas8290
@adityadas8290 9 ай бұрын
is project ko resume mein daalu to kya likhna chahiye
@MehulKumar-xw9rx
@MehulKumar-xw9rx 9 ай бұрын
state = current state in the store
@DhvanitMonpara
@DhvanitMonpara 8 ай бұрын
Thanks
@SurajRathod-f7q
@SurajRathod-f7q 6 күн бұрын
Just watched this React Toolkit crash course-Hitesh sir, you nailed it! Your clear explanation of Redux Toolkit, from slices to actions and store, made state management so easy to understand. One of the best resources for learning Redux Toolkit-thank you, sir! 🙌🔥
@Anonymouss670
@Anonymouss670 5 күн бұрын
was looking to have this lecture and was looking for such comment , now lets start it lol
@nitinmore7686
@nitinmore7686 Жыл бұрын
हितेश भाई, पुराणे जमाने वाके जो अद्यापक थे, ओ इतनेही, तन, मन से सिखाते थे.... आप उनमेसे ही हो.... सब आपके यहाँ सिखनेवालो के मन मे , आपके प्रती येही, भावना रहेगी.... यर बहुत अच्छा आजका vdo था... मे इसे सुब ह 3.00बजे से देख रहा था, और समज रहा था.... के बहुत लॉजिकल फ्लो को पकड के सिखाते हो.... येही तो आपने जिन्दगी मे पाया है.... पुरा भारत के हिंदी है... आपके यहाँ करोडो कंमेंट्स बनेंगे.... हमे पता है... बहुत बहुत् धन्यवाद!!!!
@ankushladani496
@ankushladani496 Жыл бұрын
React Redux Is used for making a bridge between react and core redux.
@NinjaMS_
@NinjaMS_ 10 ай бұрын
Never Imagined coding can be this addictive 😂😂
@thesolorahul
@thesolorahul Ай бұрын
only when you study from GOAT 😂😂
@tanishkagupta6864
@tanishkagupta6864 Жыл бұрын
We love history lessons please keep it up
@SikhleTu
@SikhleTu 11 ай бұрын
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 ❤
@nishutiwari-be1lb
@nishutiwari-be1lb 4 ай бұрын
september 2024,thanks a lot for this whole series..... seriously better that any react tutorial and series availabe on any channel ever .................
@09ankitverma89
@09ankitverma89 4 ай бұрын
Bro can you please tell that why we use todoReducer in our store.js file and we imported it from todoSlice.js. But in todoSlice.js file there is nothing named as todoReducer
@rishikeshrahane2333
@rishikeshrahane2333 Жыл бұрын
Thank you so much sir, for very short and precise as well as concepts clearing crash course!
@Rohitsoni-dv8lw
@Rohitsoni-dv8lw Жыл бұрын
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.
@NG95010
@NG95010 28 күн бұрын
Date:02/01/2025 Redux with Chai aur code☕👩🏻‍💻Thank you so much Sir !
@adarshagnihotri3228
@adarshagnihotri3228 4 ай бұрын
are sir, thank you... subh uth ke fir se dobara bnaunga....😮‍💨 React state management aap se behtar kahin nhi dekha youtube pr
@Code_Krupa
@Code_Krupa 4 ай бұрын
Month: September,2024 Date:19/09/2024 Redux with Chai aur code☕👩🏻‍💻Thank you so much Sir !
@SagarJidiya-y6l
@SagarJidiya-y6l 4 ай бұрын
same
@Manoj-eh7dn
@Manoj-eh7dn 3 ай бұрын
hi, aapne kitne react projects banye ab tk ?
@RahulSharma-wz6yv
@RahulSharma-wz6yv 4 ай бұрын
05 September 2024 Happy Teachers Day Hitesh Sir 🎉
@Ashishkumar-qs2bg
@Ashishkumar-qs2bg 8 ай бұрын
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
@ganeshv4724
@ganeshv4724 4 ай бұрын
🤣🤣🤣🤣🤣🤣🤣🤣🤣 last point was very accurate
@ravirajpatil7782
@ravirajpatil7782 3 ай бұрын
Hitesh sir aap jaise teachers ho toh har complex chiz simple hogi. Ha hum late(Oct,2024) h par direct h
@argamezone7181
@argamezone7181 5 ай бұрын
Anyone in August 2024
@sxjeed
@sxjeed 5 ай бұрын
Aug 21
@mockvlogs1316
@mockvlogs1316 5 ай бұрын
Aug 23🙋‍♂️
@souvikbid1123
@souvikbid1123 5 ай бұрын
Aug 25
@Codewithvikash420
@Codewithvikash420 5 ай бұрын
​@@souvikbid1123 bhai smaj aa raha hai😢
@SumitSingh_1947
@SumitSingh_1947 5 ай бұрын
yes bro
@yashrajsingh4215
@yashrajsingh4215 Жыл бұрын
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!
@khushiRathore-s3o
@khushiRathore-s3o Жыл бұрын
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 🧡🧡
@Bruh468
@Bruh468 2 ай бұрын
This entire series is probably the best series on React , I have come across. Thank you so much!
@abhishekmehta6508
@abhishekmehta6508 4 ай бұрын
Anyone in October 2024
@aizajsamani8894
@aizajsamani8894 21 күн бұрын
Redux Toolkit ki sabse Achhi Video , Thank You Sir.
@vishakhamore3778
@vishakhamore3778 Ай бұрын
Dec 2024 🤘 3rd attempt to understand redux and I think finally I got understanding now. Thank you so much 😅
@blackopss017
@blackopss017 Жыл бұрын
A skilled and engaging teacher can take a seemingly dull , complex topic and make it interesting and understandable. You are legit bhaiya ❤️❤️❤️
@AnilKumarPatidar11
@AnilKumarPatidar11 3 ай бұрын
Hello Hitesh Sir, I got an offer from a startup as a Software Developer(React & Node.js) After watching the series "Chai and Javascript" I loved it and now I am stuck at a point in the redux, and I revised it I understood all things and was able to work with Redux. I appreciate my task and how I would implement it. Thanks for both series ♥♥♥♥♥.
@gauravkumawat5811
@gauravkumawat5811 Ай бұрын
@@AnilKumarPatidar11 Hello brother, I've been looking for a job role of a Front-End React Developer but am unable to land any. Now day by day I'm getting depressed 😔. Please help me to get a job 🙏🏽
@ackibjaved
@ackibjaved 2 ай бұрын
I learned MERN stack with your videos. You're a great teacher!! God bless you. Love from Pakistan
@lordchachaopansari3738
@lordchachaopansari3738 26 күн бұрын
HI Hitesh SIr, I am a working professional (MEAN Stack) i am watching your react series from 1 Jan 2025 jut to learn more. and found this series is awesome.
@MdTabish-q1s
@MdTabish-q1s 2 ай бұрын
bohot masst video tha bro, like mujhe redux and state management smjh me nhi ara tha but this will be my last video on redux
@BioChemAcademy
@BioChemAcademy 5 ай бұрын
Aug 29 2024 (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. )
@pxbxz
@pxbxz 3 ай бұрын
Watching this in October 2024 🎉 . Thank you sir ji for this valuable series ❤
@punitkingvlogs
@punitkingvlogs 27 күн бұрын
bahut hi ache se samaj aaya bilkul chai aur code is best channel for coding learning
@yogeshv6799
@yogeshv6799 5 ай бұрын
Thank you Hitesh! Starting to know this concept with your video and I'm already clear about it to a huge extent. Will practice it and I'm sure I'll get it right! ❤🙏
@typingmaster24
@typingmaster24 29 күн бұрын
Thank you so much sir!! redux-toolkit /state management done here.
@VishwaKansara-b1d
@VishwaKansara-b1d 5 ай бұрын
React sikhne mein aur history classes mein bahut maza aa rha hain, projects mein sare concepts clear ho rhe hain, Big thanks Hitesh sir
@Madhavjisha
@Madhavjisha 4 ай бұрын
wow amazing...from today's u are my code guru...very well explained...🤩
@jagsdubey9095
@jagsdubey9095 5 ай бұрын
in the slice export default todoSlice.reducer; but in the store imported import todoReducer from './todoSlice'; working fine but not able to understand why? Please clear
@MohdUsman-js7hp
@MohdUsman-js7hp 4 ай бұрын
In the Slice (todoSlice.js ) file u don't export something called counterReducer. Instead you're exporting the reducer from createSlice instance using export default . when u import it into your store, you can assign it any name you want. Typically it is called todoReducer .
@MrWroop
@MrWroop Ай бұрын
0:07 Present Sir
@Powerful-Manifestor-
@Powerful-Manifestor- 5 ай бұрын
Watching your video for the first time. I am a beginner in React with experience in Angular and NgRx. Watching this video straightaway after props for an assignment submission. You explained so so well. Really easy to follow. I think I should be able to manage my assignment submission for now after this. Thank you so much. You made my day. :) Special thanks for the summary. Really helped in consolidating things in mind. :)
@chetansharma313
@chetansharma313 Ай бұрын
very nice video of redux toolkit understood crystal clear thank you sir for teaching so clearly and simply
@VivekSolanki-v7b
@VivekSolanki-v7b 4 ай бұрын
Very well explained, Very easy to understand, Thank you once again.
@prakashratde787
@prakashratde787 5 ай бұрын
This videos are gold mines now a days people go for views, but he is providing us logics and methods and explaining in a plain vanilla word without beating around the bush.. Thanks Hitesh sir.
@ansarimuskan4548
@ansarimuskan4548 3 ай бұрын
I watched so many videos for RTK I can not understand them properly but your teaching method and flow cannot do that amazing sir jii.
@sachinmehra6355
@sachinmehra6355 2 ай бұрын
Sir,You Have Explained Redux ToolKit In Simplay Way Words And You'r Teaching Also Awesome
@piyushwaghela5704
@piyushwaghela5704 5 ай бұрын
please continue making videos like these it is really helpful i was not able to understand through docs but your video helped me to understand redux toolkit
@elishplayz773
@elishplayz773 Ай бұрын
Too much in depth cant belive I am watching this for free.. Huge thanks
@travelloussapien8732
@travelloussapien8732 3 ай бұрын
It's really impressive, redux does look easy in this course. great work!
@amiteshmishra2754
@amiteshmishra2754 Ай бұрын
Nice explanation, I was not confident in context API, but now I am feeling confident about Redux toolkit.
@NikhilSingh-rx2lu
@NikhilSingh-rx2lu 3 ай бұрын
Please try to show the output of every step of code...it will clearyf the concept of code
@VishalAhir-k2b
@VishalAhir-k2b 5 ай бұрын
I recently completed your full Redux tutorial, and I just wanted to say thank you, Hitesh Sir! Your explanations were clear, concise, and very easy to follow. The practical examples helped me understand Redux concepts like actions, reducers, slices, and the importance of immutability. The step-by-step approach really made a complex topic manageable. I feel much more confident in using Redux in my projects now. Keep up the amazing work and thank you for sharing your knowledge!
@swapnildapkosh1893
@swapnildapkosh1893 19 күн бұрын
ye hai content. Thanks Sir!❤‍🔥
@full_fun813
@full_fun813 5 ай бұрын
Best video of KZbin for learning react-redux.
@DanishKhan99-C
@DanishKhan99-C 5 ай бұрын
Han G chai aur react pe 2024 mai ay hai but but ap jese koi nahi ❤
@namandeepsingh1949
@namandeepsingh1949 5 ай бұрын
Amazing Explanation but one thing I will recommend to who so ever is watching this video clear your js concepts and understand context Api first then you will able to understand amazing video sir
@sanchitwadehra
@sanchitwadehra 4 ай бұрын
dhanyavad ji implemented the update function correctly and i am now feeling confident with the redux explained by you
@rishabhdora289
@rishabhdora289 4 ай бұрын
Kabhi socha nahi tha redux itna easy rhega. Thankyou! Hitesh
@________.pathfinder
@________.pathfinder 5 ай бұрын
why i didn't get this video earlier. From last two years i was confuse between Redux, React-redux and Redux-toolkit. Sir you explained very well. Thats the reason someone said History teach us a lot than Science.
@yashkhatwani230
@yashkhatwani230 2 ай бұрын
Thank you so much , got a good understanding of concepts , will come back and write my takeaways from this video
@muskanbhatia7654
@muskanbhatia7654 2 ай бұрын
Sir in my console 59:01 you have the option to show redux state but it was not shown in my case so how it comes can you please tell me sir
@raghavmistry3402
@raghavmistry3402 24 күн бұрын
you need to add extension for that redux dev kit in chrome
@pushprajchaudhary26
@pushprajchaudhary26 4 ай бұрын
Thank you Hitesh Ji, clear and crisp example to understand RTK
@chaiaurcode
@chaiaurcode 4 ай бұрын
Keep watching
@brainfckk
@brainfckk Ай бұрын
Hello sir, maybe keep the history sections to the point and as precise as you can be so that we get a clear picture of what happened and why it happened
@souvikbid1123
@souvikbid1123 5 ай бұрын
Simply just awesome ❤❤ Such in-depth knowledge in the most simple way that also for free and also in hindi Just Chai aur Code❤❤
@vishalamin200
@vishalamin200 5 ай бұрын
very very good explaination, redux was very complex topic for me, but you teach the tough topic in easily understandable way. Thank you so for that, I'm blessed that I found your channel.
@adnanlaghari8026
@adnanlaghari8026 2 ай бұрын
maza a gia sir or history lazmi honi chahiya us bhi bht koch smjh ati ha thank you sir
@coding-with-musa
@coding-with-musa 4 ай бұрын
Redux explained very easily. Thanks a lot sir.
@pirate_777_7
@pirate_777_7 4 ай бұрын
Hm dobara se aaye h sir, actually I was making that MegaBlog Project but forgot everything about the redux toolkit syntax, isliye fir se aana pda .....pr koi nhi chije thodi aur clear hui❤
@manasbarik-s1v
@manasbarik-s1v Ай бұрын
Bhai bahut simple way me samjhaya ...thanks a lot bro
@vishalrajput8231
@vishalrajput8231 Жыл бұрын
🌟 Making awesome stuff and sharing it for free? You're like the Robin Hood of coding! 🏹🎉 Thanks for being our coding hero, teaching and entertaining us! 🦸‍♂️💫 #ReactRockstar #CodingHero #Chai❤
@jayraskar
@jayraskar 3 ай бұрын
Attended on 05 Oct 2024, Hitesh Sir be like ek series banaunga koi saalo saal beat nahi kar payega😂😂😎
@rafiashan8389
@rafiashan8389 4 ай бұрын
Sir such a detailed video. Thank you so much. May God bless you.
@aryan_bhagat9447
@aryan_bhagat9447 2 ай бұрын
Have to say... Isse jyada in-depth kahi nahi milega ❤❤❤❤
@saifuffofficial8407
@saifuffofficial8407 4 ай бұрын
sir may be there is a problem in import on store [ you did not export any variable called todoReducer from Todoslice,js but you import todoReducer in store js 36:02 can any buddy notice it ? ]
@SaurabhThakur-d8l
@SaurabhThakur-d8l 23 күн бұрын
Bro Since we are exporting using default method from TodoSlice, So irrespective of what name you give to it, same method will be imported.
@AnirbanChatterjee-tp2mf
@AnirbanChatterjee-tp2mf 11 күн бұрын
Thanks sir for explaining complex topics in simple way. ❤❤
@VishalGK7
@VishalGK7 3 ай бұрын
Great video on redux and a very detailed explaination along with the history..
@pranshujaiswal-9012
@pranshujaiswal-9012 3 ай бұрын
Watching this video today on 14-October-2024. Enjoying it a lot.
@GovindKumar-x6t2j
@GovindKumar-x6t2j 23 сағат бұрын
Very helpful video and I wanna just say, that's the coding coach I want to take coaching from. Thank you so much for delivering this video to us, it was fabulous, easy to learn, concept explanations was neat and clear, delivered complex concepts in very simple and easy way. I enjoyed it '😊😊😊😊😊😊 Thank you once again keep teaching us, God bless you.
@nitinrawat5061
@nitinrawat5061 4 ай бұрын
First time I am staying in an online free course for 15 lectures even sometime the thing become complex but the way you teach it also become easy thanks hitesh sir jii
@arnavkumar4631
@arnavkumar4631 5 ай бұрын
Fully Understood Sir ji, Thankyou for this much Good Explanation.
@anupamkumar10
@anupamkumar10 2 ай бұрын
The best part is that you share the history in your video!!!!
@divymodi7642
@divymodi7642 24 күн бұрын
Thank you soo much sir for amazing redux tutorial ❤❤👌👌
@shubhansusinghbhadoria8522
@shubhansusinghbhadoria8522 5 ай бұрын
Lajawaab sir, I have no words. please keep making these videos.
@aishwaryashinde3673
@aishwaryashinde3673 3 ай бұрын
Awesome session for redux to clear all redux basic concept.
@ritikmangalcse_sriit7972
@ritikmangalcse_sriit7972 3 ай бұрын
This React series is incredibly informative! It simplifies complex concepts and makes learning React so much easier. thank you hitesh sir 🙏🙏🫡
What is your choice for Mega Project in React?
8:23
Chai aur Code
Рет қаралды 66 М.
Context API crash course with 2 projects
1:13:27
Chai aur Code
Рет қаралды 333 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
Learn Redux Toolkit in 1 Video
53:34
CodeHelp - by Babbar
Рет қаралды 68 М.
Learn Redux Toolkit in under 1 hour
58:10
Hitesh Choudhary
Рет қаралды 156 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 127 М.
Context api with local storage | project
1:15:33
Chai aur Code
Рет қаралды 196 М.
Context API in react | get the concept
29:00
Hitesh Choudhary
Рет қаралды 77 М.
Which Country Do You HATE The Most? | AFGHANISTAN
8:53
gus1thego
Рет қаралды 375 М.
Redux - Complete Tutorial (with Redux Toolkit)
37:01
Cosden Solutions
Рет қаралды 270 М.
Ultimate AI ML Roadmap for beginners
28:28
Chai aur Code
Рет қаралды 77 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 947 М.
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 20 МЛН