From ba00c917cf4cbe14558d8f87f49c8a956cc3c759 Mon Sep 17 00:00:00 2001 From: Yubraj khatri <112848654+Yubraj977@users.noreply.github.com> Date: Sat, 11 May 2024 06:45:44 +0545 Subject: [PATCH] Add resource for useContext (#5033) * Update 100-context.md This article help me a lot to grab the idea about how the context is solving the problem of the prop drilling. I think beginner should start with this article to grasp the knowledge about the problem that trying to solve by the the context * Update src/data/roadmaps/react/content/106-state-management/100-context.md * Update src/data/roadmaps/react/content/106-state-management/100-context.md --------- Co-authored-by: Kamran Ahmed --- .../roadmaps/react/content/106-state-management/100-context.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/roadmaps/react/content/106-state-management/100-context.md b/src/data/roadmaps/react/content/106-state-management/100-context.md index e4afdb8f3..09bf04e0d 100644 --- a/src/data/roadmaps/react/content/106-state-management/100-context.md +++ b/src/data/roadmaps/react/content/106-state-management/100-context.md @@ -6,5 +6,6 @@ In a typical React application, data is passed top-down (parent to child) via pr Visit the following resources to learn more: +- [Basic useContext Guide](https://www.w3schools.com/react/react_usecontext.asp) - [Passing Data Deeply with Context](https://react.dev/learn/passing-data-deeply-with-context) - [State with useContext and useState/useReducer](https://www.robinwieruch.de/react-state-usereducer-usestate-usecontext/)