react--hello,word

前端之家收集整理的这篇文章主要介绍了react--hello,word前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

官网地址:

https://facebook.github.io/react/

github地址:

https://github.com/facebook/react
1.下载
http://facebook.github.io/react/downloads.html
2.hello word!
点击查看演示
代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="UTF-8">
    <title>Document</title>
    <script src="react.min.js"></script>
    <script src="JSXTransformer.js"></script>
</head>
<body>
    <div id="example"></div>
    <script type="text/jsx"> React.render( <h1>Hello,world!</h1>,document.getElementById('example') ); </script>
</body>
</html>

3.cdn地址
http://www.bootcdn.cn/react/ 只要引入就可以使用啦

原文链接:https://www.f2er.com/react/307704.html

猜你在找的React相关文章