I have a problem with useContext because it returns undefined to me. could you please help me?
Uncaught TypeError: Cannot destructure property 'course' of 'Object(...)(...)' as it is undefined.
courseGlobal is your context. you should pass courseGlobal to useContext but you are passing ContextCourse that is a provider not a context
courseGlobal
useContext
ContextCourse