Introduction


props are the basic way to pass values from a parent component to a child component. But as your component tree gets deeper, useContext becomes a better option.

In this article, I’ll walk through how to use useContext and explain the difference between using props and using context.




What is useContext?


useContext is a...