React程序结构介绍-Hello world

Posted lihfei89

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React程序结构介绍-Hello world相关的知识,希望对你有一定的参考价值。

1,程序结构 JS(JSX)+html+CSS

2 首先在Sublime中创建一个html文件

   输入html:5  按Tab键自动生成基础代码

   默认语言是英文语言,修改lang="zh-cn"即为中文

   具体见一下代码:

 

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World!</title>

</head>
<body>
<script src="./react-0.13.2/react-0.13.2/build/react.js"></script>
<script src="./react-0.13.2/react-0.13.2/build/JSXTransformer.js"></script>
<script type="text/jsx">
var HelloWorld = React.createClass({
render: function () {
return <p>Hello, World</p>
}
});
React.render(<HelloWorld></HelloWorld>, document.body);
</script>
</body>
</html>

以上是关于React程序结构介绍-Hello world的主要内容,如果未能解决你的问题,请参考以下文章

react native 入门 - 环境搭建, 创建第一个Hello World

Linux设备驱动Hello World程序介绍

输出hello world

带有 ReactJS、Webpack 和 Babel 的 Hello World

Python介绍下载安装配置第一个程序Hello World

第四章 Hello,Shaders