reactjsbrowserify

Where is the error in the react?


I built the file using commands:

browserify -t reactify js/app.js -o js/build.js

When starting in the browser, an error occurs:

build.js:196 Uncaught TypeError: React.render is not a function
    at Object.2.react (build.js:196)
    at s (build.js:1)
    at e (build.js:1)
    at build.js:1

How to fix it?


Solution

  • render is no longer part of 'react'. If you want to render to a DOM element, import render from 'react-dom'.