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.
4 lines
231 B
4 lines
231 B
3 years ago
|
在设计 React 组件时,要注意以下原则:
|
||
|
1. 保持接口小,props 数量要少;
|
||
|
2. 根据数据边界来划分组件,充分利用组合 (composition);
|
||
3 years ago
|
3. 状态提升,让下层组件尽量只是一个纯函数
|