React Context Api
Context Api allows us to transfer data that each component can use. So the context api gives us global data. When transferring data through props in nested components, we have props hells with the branching method.To get rid of props hell, we define a Global data (context Api) so we can send the same data to all components via context api...
