“Uncaught TypeError: React.createClass is not a function” in Render.js file (electron app)

后端 未结 3 1811
再見小時候
再見小時候 2021-02-10 16:47

I\'m new to react.js and I am trying to get this code to replace one line in an html file inside an electron app with whatever is in return inside the MainInterface variable

3条回答
  •  [愿得一人]
    2021-02-10 17:02

    In the latest version of React, you will notice that React.createClass was removed from the library. One of the biggest changes is that you can create React components using JavaScript classes.

提交回复
热议问题