Project 16 of my #React Journey
Redux Task Manager
I created a simple task manager; the logic wasn't hard, as I had already created a similar application before. I just had to do it again while using Redux to manage state globally.
#100DaysOfCode#Redux#ReactRedux#ReactState
Project 15 of my #React Journey
Redux Counter
After several days wrapping my head around Redux, I finally managed to understand the basics and apply that knowledge in building a Redux Counter
#100DaysOfCode#javascript#redux#reactredux
Project 15 of my #React Journey
Redux Counter
After several days wrapping my head around Redux, I finally managed to understand the basics and apply that knowledge in building a Redux Counter
#100DaysOfCode#javascript#redux#reactredux
Project 14 of my #React Learning Journey
Shopping Cart
I implemented two basic pages: the shop and cart pages. Using the React Context API, the item data and state are seamlessly managed between the two pages and the individual components in each page.
Here I am, diving into React Redux Toolkit at 1 AM! 🧑💻🌙
Late-night learning hits differently—no distractions, just me and the code. Who else is still up grinding or geeking out at this hour? Let’s hear it! 👀✨
#DevLife#NightOwlCoding#ReactRedux
After putting off learning Redux for a while, I'm finally making progress! I've read about how useful Redux can be in managing complex projects and how it's often required in developer roles, so I'm excited to add it to my skillset.
#redux#reactRedux#tech#LearningInPublic
Day 6:
Can't do much because of my internship😔
But still learned Redux and implemented in my project for global State management.
Solved leetcode daily question
#leetcode#CodingStruggles#connect#reach#reactredux
The basic workflow of Redux mentioned below
courtesy : claude
-----------
An action is dispatched from somewhere in the application, such as a user interaction or an API request.
The Redux store receives the action and passes it to the root reducer.
The root reducer combines the output of multiple reducers and returns a new state object.
The store updates its state with the new state object and notifies any subscribers (e.g., React components) that the state has changed.
The subscriber components can access the new state and re-render if necessary.
#frontend#reactjs#reactredux#redux
🥲Redux toolkit is an over-engineering for a simple crud. But for learning it's fine.
Just copy paste the boiler plate from React-Redux counter example.
Don't use redux directly...it's super confusing using a wrapper like the ReactRedux...this will help you