Skip to content
Advertisement

Why am I getting undefined prop?

Below is my Header component in react:

JavaScript

I have used ContextAPI for efficient state Management.CryptoState is used for this purpose.I have imported the state in Header and getting the necessary props using object-destructuring.

Below is my Context-file:

JavaScript

I am getting this error in Header component:Header.js:8 Uncaught TypeError: Cannot destructure property 'currency' of '(0 , _CryptoContext__WEBPACK_IMPORTED_MODULE_1__.CryptoState)(...)' as it is undefined.

Advertisement

Answer

inside your CryptoState function, Crypto is not defined as it is initialized in CryptoContext.

Crypto context should be extracted from your CryptoContext component and declared as a const outside of any function to be available

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement