Paul Hofmann 1c1ea40ca5 Create jsx.js
added JSX (XML-like syntax extension to ECMAScript) for React
as specified at https://facebook.github.io/jsx/
2015-05-06 16:16:39 +02:00

13 lines
251 B
JavaScript

var React = require('react');
var HelloWorld = React.createClass({
displayName: 'HelloWorld',
render: function() {
return (
<span>Hello World</span>
);
}
});
console.log(React.renderToString(<HelloWorld />));