I have been struggling with the problem for the third day, I rummaged through the entire Internet in Russian and in English (as I could). No answer found. I ask for your help.
The essence of the problem: installed through npm React and ReactDOM. They were added to node_modules . I connect. Does not see. Writes in the console "React is undefined". And if I connect via cdn, then everything works.
What is in the code:
var React = require("react"); var ReactDOM = require("react-dom"); var Note = React.createClass({ render() { return <div>Me</div> } }); ReactDOM.render( <Note />, document.getElementById("app") );