1
0
Fork 0
Obsidian 管理的个人笔记仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

231 B

在设计 React 组件时,要注意以下原则:

  1. 保持接口小,props 数量要少;
  2. 根据数据边界来划分组件,充分利用组合 (composition);
  3. 状态提升,让下层组件尽量只是一个纯函数