© 2023 Hashnode
#redux-toolkit
INTRODUCTION Redux is a predictable state container for javascript applications. It manages and stores application states in a more structured and maintainable way, its predictability property comes w…
In this article, we will discuss the advantages of using Redux Toolkit over Core Redux. Redux Toolkit is a set of tools that make it easier to develop Redux applications. It provides a number of featu…
State management plays a crucial role in application development by maintaining knowledge of an application's inputs across multiple related data flows. In the realm of React, effectively managing the state becomes even more essential. Reac…
In this blog we will create a simple application that will take the quantity from the user and with the click of a button will add that number to the cart also we will provide an empty cart button tha…
Okay so maybe there is nothing "cool" about redux, but I think it is cool how you can use vanilla redux, createReducer and createSlice all in the same project if I want or if I have to. Why use redux…
Introduction When managing states in a React application it can be very hard to remember all the information, which makes it a bit complicated and time-consuming, especially when you are building a la…
In my last article, I discussed state management and its importance in a react application. In this article, we would be diving deep into Understanding state management with Redux and Redux toolkit. W…
Next.js is a powerful framework for building server-side rendered React applications. When combined with Redux Toolkit, it can make building complex applications even easier. Redux Toolkit is a set of…
Connecting a Redux store to a React application is a common task for developers using these technologies together. Here's a step-by-step guide on how to connect a Redux store to a React app: Install …
Step 1: Set up a new React project You can create a new React project using create-react-app. Open your terminal and run the following command: npx create-react-app my-app --template typescript This …