Target container is not a DOM element React.js
You need to call React.createElement()
like this:
ReactDOM.render(React.createElement(<App />), document.getElementById('testing'));
Make sure to double check the index.html you are seeing in your browser. Assuming you use create-react-app an thereby webpack it might serve you a different file either from memory or from the public folder.
Mistake was found from discussion in comments and chat.