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
Smit Khanparause-sync-external-store.hashnode.dev·Sep 23, 2024Replacing Context API and State Management Libraries with useSyncExternalStoreIn React apps, managing state across several components is essential to a seamless user experience. While the Context API is a common tool for managing global states, it often leads to unnecessary re-renders. When a context value changes, all compone...DiscussReact
SURVEERsurveer.hashnode.dev·Aug 31, 2024Guide For Managing Global States in ReactIntroduction Hi Guys! Welcome back to my blog with a guide for managing global states in react. While building your react app you’ll find many problems when you are not using the global states in your web app. As the applications grow in complexity, ...Discuss·39 readsReact
Saiful Alamblog.msar.me·Jul 16, 2024Understanding Zustand: A Lightweight State Management Library for ReactState management is a crucial aspect of building robust and scalable React applications. While there are numerous state management libraries available, Zustand has emerged as a lightweight and flexible alternative that provides a simple yet powerful ...Discuss·220 readsJavaScriptReact
Yadvir Kauryadvirkaur.hashnode.dev·Feb 23, 2024Zustand: A Fresh Take on State Management for ReactAs React applications grow in complexity, managing state becomes increasingly important. Zustand is a small, fast, scalable state management library for React which provides a simple and efficient way to manage the state, reducing boilerplate code an...Discuss·27 readszustand
Bhushan Patilfrontendgenius.com·Feb 22, 2023Why React Does Not Necessarily Need a Global State ManagerAs React developers, we often hear about the need for a global state manager in our applications, but in some cases, using a global state manager may not be necessary. By pushing a state towards the leaf components and using a local state and props, ...Discuss·11 likes·1.7K readsReact2Articles1Week