Justine Mahinyilajustinelim.hashnode.dev·Dec 4, 2023Comprehensive Guide to Redux Toolkit: For Beginners - Part 10Utilizing the useSelector Hook in React-Redux In this section of our comprehensive Redux Toolkit guide, we will explore the useSelector hook, a crucial tool for accessing state maintained in the Redux store. We'll implement this in a practical exampl...Discussreact redux
Justine Mahinyilajustinelim.hashnode.dev·Dec 4, 2023Comprehensive Guide to Redux Toolkit: For Beginners - Part 9Connecting React with Redux Store In this part of our series, we focus on preparing our React application to access the Redux store using react-redux. This package provides essential components and functions for integrating Redux with React applicati...DiscussReact
Justine Mahinyilajustinelim.hashnode.dev·Dec 4, 2023Comprehensive Guide to Redux Toolkit: For Beginners - Part 8Integrating Redux Toolkit with React In this final installment of our series, we focus on setting up a project that integrates Redux Toolkit with React. This setup is a precursor to understanding how Redux Toolkit and React work together, enhancing s...DiscussReact
Gujarati Coderreactflux.hashnode.dev·Oct 11, 2023Fetch Data in React JS in modern wayThere are several ways to fetch data in a React application. Here are some of the most common: Fetch API : The Fetch API is a built-in browser API for fetching resources, including data from a server. It returns a Promise that resolves to the respons...DiscussReact
Nandani Paliwalblog.nandanipaliwal.co·Sep 28, 2023Managing State with ReduxIntroduction In our previous blog, we discussed managing state in React using hooks, specifically useState. While these hooks offer a simple and effective way to handle state in smaller applications, they come with their own set of limitations. As yo...Discuss·1 likereact redux
Ashwin Telmoreashwintelmore.hashnode.dev·Aug 27, 2023Analogy: React Redux in Web Application ArchitectureI can explain React Redux using an analogy that compares it to the process of handling data in a typical web application architecture involving a server and a database. Keep in mind that this analogy simplifies the concepts for better understanding. ...Discuss·10 likesReact
Roryblog.heyrory.com·May 10, 2023The cool thing about Redux...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? Well for me one thing I enjoy is the "separation...Discuss·96 readsReact
Ravindu Sathsarasathsara.hashnode.dev·May 1, 2023Just created a simple React-Redux app using TypeScript! 🚀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 will create a new React project in a folder called...Discuss·16 likes·107 readsReactThe simplest project to get the knack of Redux 10
Dan Bahramidanbahrami.hashnode.dev·Apr 23, 2023How to create a private Redux storeUsually, when you see Redux in a React application it’s used as a single global store for application state. It tends to become a single dependency that creeps into every part of the app… but it doesn’t have to be that way. In this post, I’ll show yo...Discuss·113 readsRedux
Biraj Karkibirajkarki.hashnode.dev·Apr 7, 2023React Redux Tutorial For BeginnersReact Redux is a powerful library for managing state in large-scale web applications. It combines the simplicity of Redux with the power of React, making it an ideal choice for building complex and interactive user interfaces. In this tutorial, we wi...Discuss·13 likes·49 readsReact