前端学习-React基础
程序员文章站
2022-05-07 19:57:21
...
安装React
npm install -g create-react-app
创建一个React项目
create-react-app demo
.....
npm start
Hello React
删除src下的文件,重写,hello world才是第一步!
新建一个index.js
,引入react的包.
import React from 'react'
import ReactDom from 'react-dom'
再建个Hello.js
,这个里面写我们的hello world
,React理念组件化,我是这样理解的.
import React, {Component} from 'react'
class Hello extends Component {
render() {
return(
<div>
Hello World!
</div>
)
}
}
export default Hello
这里的{Componet}
是ES6的解构写法.
将这个Hello.js
文件在index.js
中引入进去.
import React from 'react'
import ReactDom from 'react-dom'
import Hello from './Hello'
ReactDom.render(<Hello />, document.getElementById('root'))
这里的root
节点在public
文件夹下的index.html
里面.
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
然后我们npm start
运行下:
努力,gogogo
上一篇: Rails 2.2 新特性提示
下一篇: 有关CSS的一些事