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
x
16
16
1
import React, { createContext, useState } from 'react';
2
3
const ImgContext = createContext();
4
5
const ImgConProvider = ({children}) => {
6
const [myCart, setMyCart] = useState([]);
7
8
return(
9
<ImgContext.Provider value={{myCart, setMyCart}}>
10
{children}
11
</ImgContext.Provider>
12
)
13
}
14
15
export {ImgContext, ImgConProvider}
16
ImageGrid.js
JavaScript
1
17
17
1
import React, { useContext, useState } from 'react';
2
import ImageGrid from './ImageGrid';
3
import { ImgContext } from './Context/ImageContext';
4
5
const Home = () => {
6
7
const { myCart } = useContext(ImgContext);
8
9
return (
10
<div className="App">
11
{myCart}
12
</div>
13
)
14
}
15
16
export default Home;
17
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
1
2
1
const ImgContext = createContext({});
2