1 Star 0 Fork 0

shafish / react_learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
shafish_react_JSX_1.html 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
shafish 提交于 2019-09-21 01:09 . React 学习记录:tada:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="react-demos/build/react.development.js"></script>
<script src="react-demos/build/react-dom.development.js"></script>
<script src="react-demos/build/babel.min.js"></script>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
var names = ['alice','emily','kate'];
ReactDOM.render(
<div>
{
names.map(function(name) {
return <div>Hello{name}! </div>
})
}
</div>,
document.getElementById('example')
);
</script>
</body>
</html>
1
https://gitee.com/shafish/react_learn.git
git@gitee.com:shafish/react_learn.git
shafish
react_learn
react_learn
master

搜索帮助