你的 React JSX 代码文件可以写在单独的文件里。创建 src/hello.js 文件,内容如下:
ReactDOM.render(
<h1>Hello,world</h1>,
document.getElementById('demo')
);
然后在index.html 引用它
<script type="text/babel" src="src/hello.js"></script>
达到了同样的效果,并且我们通过firebug可以注意到发送了一个GET请求我们的hello.js