Uncaught ReferenceError: ReactDOM is not defined

后端 未结 5 2000
半阙折子戏
半阙折子戏 2021-02-01 01:26

So i have Rails applications, i installed react-rails gem, set it up and try to run test application.

Freshly installed, when i tryed to run hello world program, this er

5条回答
  •  天涯浪人
    2021-02-01 02:00

    To make it work properly, you have to do 3 things.

    1. Import the CDNs, necessary for the developement(Say react and react-dom for web development)
    
    
    1. install babel-cli . It is needed for the compilation of JSX into vanila js

    2. change the typo in your code,

    it is ReactDOM , not RaactDOM

提交回复
热议问题