I am trying to make ReactJS work with rails using this tutorial. I am getting this error:
Uncaught ReferenceError: React is not defined
Try to add:
import React from 'react' import { render } from 'react-dom' window.React = React
before the render() function.
render()
This sometimes prevents error to pop-up returning:
React is not defined
Adding React to the window will solve these problems.
React