© 2023 Hashnode
#react-redux
Why REDUX? -Normally in React how to pass data? The data in React always flow from parent to child component which makes it unidirectional. ( It is not possible, we can send data from child to parent…
If you’re getting started with trying to understand Redux, it can get a bit daunting, especially for beginners. There are a number of blogs out there on the topic, but they all fall short as they fail…
Redux is a state management library which offers a lot of features. The downside is it adds up a lot of boilerplate code and complexity to applications. The Redux toolkit solves these problems for us.…
React Redux Redux can be used with Angular as well. So we should not be confused if we see React Redux used very often. Redux is a container where we can store our states. It is like an array where data of our application is stored. Redux …
What is Reducer? Reducers, as the name suggests, take in two things: previous state and an action. Then they reduce it to one entity: the new updated instance of state. Reducer function has 2 properti…
Hey there Beautiful person! Some context Recently I started working on a web project and decided to use Redux for state management, as it is going to be a rather big project and I wanted to learn Red…
This article covers Thunk middleware in detail and Extra Reducers and we will continue with the same application. You can read out Redux Toolkit part1 https://www.youtube.com/playlist?list=PLCG3NOef02…
This article covers Redux Toolkit implementation with a project. you can also watch my Redux Toolkit Tutorial series on youtube. If you don't know about Redux then you can read this article Reudx Arti…
This article is a part of the Redux Toolkit (A Modern Redux) article and it covers the basics of Redux that will help you to easily understand Redux Toolkit. You can also read out Redux Toolkit artic…
What is Redux ? let's head over to the documentation: Redux is a predictable state container for JavaScript apps. It helps you write applications that behave consistently, run in different environme…