Uncaught ReferenceError: React is not defined
I was able to reproduce this error when I was using webpack to build my javascript with the following chunk in my webpack.config.json: This above configuration tells webpack to not resolve require(‘react’) by loading an npm module, but instead to expect a global variable (i.e. on the window object) called React. The solution is to … Read more