React Context APIs, State sharing and Zustand
In React, we typically use props to pass data from a parent component to its children component. Props passing works well for small applications, but in larger application, props passing become a pain — especially when data needs to be accessed by deeply nested components. Lets imagine a scenario where you have three components —…
