React seems to be removing the css class I want to set on the div returned from render. It even happens if I nest another div inside the first, and set the class on the enclosed div.
var NightComponent = React.createClass({ render: function() { return test ; } });
How do I do this in react?