How to Simplify State Management With React.js Context API - A Tutorial | HackerNoon
Briefly

You know how sometimes you need to pass data from a parent component down to a child component, and you end up passing props through a bunch of components in between? That's called prop drilling, and it can get messy fast.
React Context API lets you pass data between components without needing to pass it as props through each level of the component tree, working as a global state management system where you define your state in a context object.
Read at Hackernoon
[
|
]