When to use Reactâs built-in state management or a state management library
When writing data in React, state must be passed from the top downwards, with methods passed down if you need to change data above a component. This approach can become difficult when you need to pass data several components down, often through components that donât need them. This post contains my thoughts on state management and state management libraries in React. Reactâs built-in state management is often all you need Before using a statement management library you should carefully consider whether you need one....