mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 04:26:54 +08:00
Co-authored-by: nilbuild <4921183+nilbuild@users.noreply.github.com>
824 B
824 B
Context
Context is a built-in React feature that lets you share data across the component tree without passing it through props at every level. You create a context, provide a value at some point in the tree, and any component below can read that value with useContext. It works well for data that does not change often, like theme or authentication status, but is not designed to replace a full state management library for frequently changing data.
Visit the following resources to learn more: