Currently, when two escaped entities are outputted the space between them is removed. For the code below the expected output is "Hello World", but the actual output is "HelloWorld" (without a space between "Hello" and "World").
var Hello = React.createClass({
render: function() {
return <div>{this.props.greeting} {this.props.name}</div>;
}
});
React.renderComponent(<Hello greeting="Hello" name="World" />, document.body);
Link to discussion on Google Groups