<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-type' content='text/html; charset=utf-8'>
<title>Basic Example</title>
<script src="http://fb.me/react-0.13.3.js"></script>
<script src="http://fb.me/JSXTransformer-0.13.3.js"></script>
</head>
<body>
<div id="container">
</div>
<script type="text/jsx">
var ExampleApplication = React.createClass({
render: function() {
return <h1>猫</h1>;
}
});
React.render(
<ExampleApplication/>, document.getElementById('container')
);
</script>
</body>
</html>
最終更新:2015年09月30日 21:05