1.创建项目
npx create-react-app name // 1.npx node的工具命令 // 2.create-react-app 创建react项目的固定写法 // 3.name 项目名称
2.目录结构
重点关注src目录,入口文件为src/index.js,也就是运行的起点,导入项目的根组件并渲染到id为root(public/index.html)的dom上,
大致流程: app -> index.js -> public/index.html
标签:index,项目,创建,app,react,create From: https://www.cnblogs.com/zhaohaha/p/18306833