Context API
-
This lesson introduces the React Context API and explains how to share data across the component tree.
Context API
When to Use Context
Use Context when data is:
Global
Required by many components
Rarely changing
Examples:
Auth user
Theme
Language
Context vs Props
Context solves prop drilling.