I am trying to make ReactJS work with rails using this tutorial. I am getting this error:
Uncaught ReferenceError: React is not defined
I was facing the same issue. I resolved it by importing React and ReactDOM like as follows:
React
ReactDOM
import React from 'react'; import ReactDOM from 'react-dom';