Uncaught ReferenceError: React is not defined

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

    The displayed error

    after that import react

    Finally import react-dom

    if error is react is not define,please add ==>import React from 'react';

    if error is reactDOM is not define,please add ==>import ReactDOM from 'react-dom';

提交回复
热议问题