'React is not defined in create Context API

I have created a context by the name of:

const MyContext = React.createContext();

But I am getting error React is not defined undef



Solution 1:[1]

You need to have import React from 'react'; at the top of the react file.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Andrei Stoica