Concept Flow - Avoiding prop drilling
Parent Component
Pass props down
Child Component
Pass props down
Grandchild Component
Parent Component
Context Provider
Any Nested Component
Prop drilling is when data is passed through many layers of components. Using React Context lets nested components get data directly, avoiding this.