5 #reactjs Posts

When to (Not) Use React Context API for State?

3 min read

React's Context API is a popular choice for global state (my definition: state that is shared amongst components). It is easy to use and we are used to it because a lot of libraries leverage them. There are characteristics of React Context that you s...