I have a simple react component with a form in it:
react
var AddAppts = React.createClass({ handleClick:
For me the reason for the same problem was that I've imported the ReactDom globally, as a property of the window object, like this:
ReactDom
import ReactDOM from 'react-dom' window.ReactDOM = ReactDOM
removing window.ReactDOM = ReactDOM fixed the problem.
window.ReactDOM = ReactDOM