Okoye Ndidiamakaamikdigital.hashnode.dev·Nov 12, 2024Mastering State Management in React: Choosing the Right Tool for Your ProjectState management is among the major concerns that arise during application development with React when your application grows in size and complexity. Among the state management tools, you may have probably heard of are Redux, Context API, and emergin...DiscussState Management
EthanforWhat The Heckwth.hashnode.dev·Nov 10, 2024WTH is ZUSTANDIntroduction If you’re a developer , or listen to convos. of devs. you will find them crib about the state management. What is state management ?? Well, just say passing down of values from one compenent to another ( child or sibling ), and managing ...DiscussLearn Zustandzustand
kietHThashnext.hashnode.dev·Nov 5, 2024React Context: A Comprehensive Guide - Part 4🔔🔔🔔Intro to ReactJS basic - Part 1 ☘️☘️☘️React JS Virtual DOM Explained - Part 2 🌲🌲🌲Advance React Hooks - Part 3💯💯💯ReactJS Explained Hooks - Part 5 ⚡️⚡️⚡️ 🌐🌐🌐 The useContext hook is a powerful feature in React that allows functional components ...DiscussReact
Pavani PampanaforReact Jsreact-js-context-manager.hashnode.dev·Oct 28, 2024How to Use React's Context API to Make State Management EasyWhen developing React applications, managing data between components is one of the most common challenges. Typically, "props drilling" — the process of passing props from a parent component down to deeply nested child components — can make our code c...DiscussReact
Aaksaaks.hashnode.dev·Oct 20, 2024Custom API local storageDuring days 15 and 16 of my React journey, I worked on a project to create a todo list application. This project allowed me to implement Context API for state management and local storage for data persistence. Throughout the process, I learned how to...DiscussReact local Storage
Aaksaaks.hashnode.dev·Oct 17, 2024Context APIIn this blog, I'll share what I learned about using the Context API in React to implement a theme toggle feature. While I have explored the Context API before, this time I approached it a bit differently. I'll walk you through how I created a simple ...Discusscontext API
Aaksaaks.hashnode.dev·Oct 16, 2024Context APIOn the 13th day of my learning journey, I explored how to capture and manage data in React using the Context API. I’m thrilled to share my insights today. Let’s start from the basics, let’s dive in! Imagine you need to pass data from the <App> compo...Discusscontext API
Aristilmastering-lexical-scope-in-javascrip.hashnode.dev·Oct 14, 2024From Props to Powerhouses: Using Context and Composition in ReactEver found yourself wondering how to manage data in a React app without passing it through multiple layers of components? Or maybe you're thinking about creating flexible and reusable components that can be easily combined? That's where two key React...Discuss·28 readsReusable Components
Yusuf Uysalyusufuysal.hashnode.dev·Oct 11, 2024React Interview Questions (Part 7): Context API & Prop Drilling1. What is the Context API, and how does it help avoid prop drilling? The Context API is a React feature that allows you to manage global state efficiently without passing props through multiple levels of components (i.e., avoiding prop drilling). By...DiscussReact Interview QuestionsReact
Yusuf Uysalyusufuysal.hashnode.dev·Oct 1, 2024React Interview Questions (Part 3): State ManagementWhat is state in React, and how is it different from props? In React, state refers to the internal data or values that a component manages and can change over time. Each component maintains its own state, and changes to the state trigger re-renders t...DiscussReact Interview QuestionsReact