Skip to content
Advertisement

react context is giving undefined object

In my react application I am trying to use context api. In my component I am importing the context but it is giving error that object can not destructure the property. I am trying to implement cart functionality in my app. I am using hooks.

ImgContext.js

JavaScript

ImageGrid.js

JavaScript

Advertisement

Answer

You are not providing a a default value when creating the context. If there is a scenario where the component doenst have access to a provider the value from context would be undefined which maybe causing the issue. Better provide a default value.

JavaScript
Advertisement