Mannu Chaurasiyadeckwish5245.hashnode.dev·Apr 18, 2024How to use Context Apicontext api is mostly used to pass the data from one state to another state and it just make. It is determined as the value passed to the closest SomeContext.Provider above the calling component in the tree. If there is no such provider, then the ret...DiscussReact
Dr. Ehoneah Obedehoneahobed.hashnode.dev·Jan 1, 2023React Context API Demystified: A Beginner's GuideI started learning to use the MERN stack for building web applications a few days ago. After successfully hosting my first web app built with this stack, I couldn't help but notice that some of the most confusing parts of this stack for beginners hav...Discuss·1 like·259 readsHTML, CSS & JavascriptReact
Vishnu Rvishnurr.hashnode.dev·Jun 29, 2022Redux vs Context APII’ve seen a lot of my friends struggling to pass data between the components. Often they get confused about where to initialize a state. So today, I thought of sharing my views on this. The simple and basic way to pass data/state from parent to child...Discuss·110 readsReact
Siddhesh Jungadeblog.siddheshjungade.dev·Jun 21, 2022React Context APILet's learn about Context API What is Context API ? It's a React way to enable and exchange of data between children without using prop-drilling. This is Use to avoid prop drilling. it is also lighter approach to state management using Redux. It ad...Discuss·9 likes·140 readsFullStackReact
Usman Gurowa Hassanusmangurowa.hashnode.dev·Jun 21, 2022A Beginner guide to global state management in React using context API.Introduction I bet you are reading this article because you want to understand how React context API works but also you finally realize that it is really hard to manage states between two or more React components because sometimes we often pass state...Discuss·136 readscontextapi
Vinit Parekhvinit17.hashnode.dev·Jun 18, 2022React Context APIToday we are going to talk about Context API in this blog. so first of all you might have a question that What is CONTEXT API? so this is the simple definition: "Context API is the way to pass the data through the multiple components without passing ...Discuss·54 readsReactJSReact