Uncaught ReferenceError: React is not defined

前端 未结 12 1875
予麋鹿
予麋鹿 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:48

    If you are using Babel and React 17, you might need to add "runtime2: "automatic" to config.

     {
         "presets": ["@babel/preset-env", ["@babel/preset-react", {
            "runtime": "automatic"
         }]]
     }
    

提交回复
热议问题