I have this code on CodePen: https://codepen.io/anon/pen/OdOyJX that works perfectly, and I am confused about why this works.
ReactDOM.render(
<div>Hello, world!</div>,
document.getElementById('root')
);
In the JavaScript settings, there is no preprocessor selected, so I expect the JSX syntax to fail as "<" is an invalid token. What makes this work on CodePen?