- Naming props from the component's own point of view rather than the context in which it is being used
- Props are read only, whether you declare a component as a function or a class, it must never modify its own props. All React components must act like pure functions with respect to their props.
网友评论