React 起源于 Facebook 的内部项目,用来架设 Instagram 的网站,并于 2013 年 5 月开源。
github:
https://github.com/facebook/react/
docs:
https://reactjs.org/docs/getting-started.html
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('example')
);
以上代码将一个 h1 标题,插入 id=“example” 节点中。