Uncaught ReferenceError: React is not defined

前端 未结 12 1876
予麋鹿
予麋鹿 2020-11-30 02:17

I am trying to make ReactJS work with rails using this tutorial. I am getting this error:


Uncaught ReferenceError: React is not defined

12条回答
  •  没有蜡笔的小新
    2020-11-30 02:35

    I was facing the same issue. I resolved it by importing React and ReactDOM like as follows:

    import React from 'react';
    import ReactDOM from 'react-dom';
    

提交回复
热议问题