I get an error when trying to load this simple component. This seems to be due to the fact that the only text in the body of the div is an . Adding any real text causes the issue to go away.
/** @jsx React.DOM */
var TestComponent = React.createClass({
render: function() {
return (
<div>
</div>
);
}
});
React.renderComponent(
<TestComponent />,
document.getElementById('content')
);