Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 716 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 716 Bytes

React学习笔记

React技术栈

初始化

npx create-react-app learn-react
cd learn-react
npm start

修改项目结构

增加 antd

npm install antd --save

增加 react-router

npm install react-router-dom --save

增加 mobx

增加 develop 分支

开发模式:

  • 使用 develop 分支开发, push
  • 提交 pull request 到 master 分支
  • 本地分支 pull --rebase 远程 master 分支