React Guideline: Props — Destructure props. Description: Destructure props for cleaner component code. Do: Destructure in function signature. Don't: props.name props.value throughout. Good Example: function User({ name, age }). Bad Example: function User(props). Severity: Low. Docs: .