react 第一個元件 “hello world!”

DayDreame發表於2019-02-27

一:在src下面新建Welcome.js

react 第一個元件 “hello world!”


二:在Welcome.js中使用類式寫法:

import React from "react"
class Welcome extends React.Component{
render(){
return <h1>hello world!</h1>
}
}
export default Welcome


三:在index.js中插入Welcome.js

react 第一個元件 “hello world!”


 四:cnpm start 執行專案

react 第一個元件 “hello world!”

相關文章