美文网首页
1.基于create-react-app的Hello World

1.基于create-react-app的Hello World

作者: __疯子__ | 来源:发表于2020-05-19 14:50 被阅读0次

教程1-14完整项目地址 https://github.com/x1141300029/react-Todos.git

npx create-react-app 项目名称

进入项目 cd 项目名称
构建项目 yarn eject (此行也可以不运行)
运行项目 yarn start

删除src目录下的所有内容
创建文件 src/index.js(入口文件)

import React from 'react'
import ReactDOM from 'react-dom'

ReactDOM.render(<h1>你好</h1>,document.getElementById("root"));

运行项目 yarn start 访问路径:http://localhost:3000

相关文章

网友评论

      本文标题:1.基于create-react-app的Hello World

      本文链接:https://www.haomeiwen.com/subject/orrbohtx.html