React Context Patterns with useContext Hook

Cheri Hung
JavaScript in Plain English
10 min readOct 21, 2019

--

React Context API offers a convenient way to implement a global state without adding any other dependencies to your app. It isn’t a direct replacement of Redux, MobX or other similar libraries. Instead, Context offers an alternative to architect your app’s state management.

Why Choose Context?

--

--