diff --git a/react/more_react_concepts/managing_state_with_context_api.md b/react/more_react_concepts/managing_state_with_context_api.md index 4aca69e7635..6ef52108d26 100644 --- a/react/more_react_concepts/managing_state_with_context_api.md +++ b/react/more_react_concepts/managing_state_with_context_api.md @@ -284,3 +284,5 @@ The following questions are an opportunity to reflect on key topics in this less This section contains helpful links to related content. It isn't required, so consider it supplemental. - For some extra practice/review, check out the [React docs lesson on passing data with Context](https://react.dev/learn/passing-data-deeply-with-context). + +- [Using Composition in React to Avoid "Prop Drilling"](https://www.youtube.com/watch?v=3XaXKiXtNjw) gives a great explanation on using composition instead of useContext, but if you find yourself prop drilling down 2-4 "dumb" components composition should be used.