Ogwu-Nelson Chikabadu Davidblog.davidchika.xyz路Dec 27, 2024State Management Made Easy: An Introduction to JotaiManaging state in React applications has always been a hot topic. From Redux to Context API, developers constantly seek tools that balance simplicity and scalability. Jotai, a lightweight, flexible state management library that simplifies how you han...13 likes路51 readsstate management with jotai
Zeeshan Safdarzeeshansafdar.hashnode.dev路Nov 19, 2024Understanding the Children Prop in ReactIn React development, one fundamental concept that you鈥檒l use time and again is the children prop. You might already know how to pass props like textColor, onClick, or backgroundColor, but what if you want to pass entire chunks of JSX content into a ...Web Development
Zeeshan Safdarzeeshansafdar.hashnode.dev路Nov 19, 2024馃殌 Mastering State Lifting in React 馃殌When working with React, managing state across multiple components can be tricky, especially when they are siblings. This is where lifting state up comes into play! What is Lifting State Up? Lifting state up is a technique in React where we move stat...React
Zeeshan Safdarzeeshansafdar.hashnode.dev路Nov 19, 2024馃専 Mastering State Management in React 馃専State is the heart of every React application. But as apps grow, managing state can become complex. Here's where state management comes in! What is State Management? It's the process of deciding: When to create new pieces of state Where to place th...React
SB'Techsharesbtechshare.hashnode.dev路Sep 16, 2024State Management in React: When to Use Context API vs. ReduxIntroduction As React applications grow in complexity, managing state becomes increasingly challenging. Two popular solutions for state management in React are the Context API and Redux. But how do you decide which one to use? In this blog post, we鈥檒...State Management
Emmanuel Obinna chukwukereemmanuelchuks.hashnode.dev路Sep 28, 2023Leveraging the Power of React Context API for State ManagementIn the world of React development, managing state can be a daunting task, especially when dealing with complex component hierarchies. Passing data between components that are not directly related can lead to prop drilling and convoluted code. Fortuna...1 likecontext API