Uncaught ReferenceError: ReactDOM is not defined

后端 未结 5 1993
半阙折子戏
半阙折子戏 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:01

    You have to import it

    import ReactDOM from 'react-dom';
    

提交回复
热议问题