Namrata Jainnamratajain.hashnode.dev·Sep 3, 2024Context APIWhat is the Context API? The Context API in React provides a streamlined way to share data across the component tree without the need to pass props through every level. This can be especially useful in larger applications where prop drilling becomes ...2 likes·68 readsReact
정정환forComit Dev Teamblog.skku-comit.dev·Nov 12, 2023[React]전역 상태관리란?<useContext를 이용한 전역 상태관리>특정 변수나 배열, 객체 등 어떤 자료구조든지 웹 페이지에서 계속해서 업데이트되면서 동적인 상호작용을 가능캐 하는 것은 전부 상태관리를 통해 이루어진다. React의 상태관리의 단초는 useState이다. State들은 props를 통해 위아래로 연결되며 서로 다른 파일에 있더라도 특정한 상태에 대한 제어를 할 수 있게 된다. 하지만 페이지의 규모가 커짐에 따라 컴포넌트 트리(컴포넌트 간 위계를 도식화한 것)는 더욱더 복잡하고 커지게 된다. 운...649 readsReact
Aditya Zendeadityadev.hashnode.dev·Sep 29, 2023React useContext and CreateContext Tutorial: Update State with a Button Click (Beginner-Friendly)!What are the prerequisites for this project? You should know about React.js You have a basic understanding of how React.js works. You should have an understanding of the useState hook. And finally, react server and client components. so first y...10 likes·102 readsNext.js