React Guideline: Components — Use composition over inheritance. Description: Compose components using children and props. Do: Use children prop for flexibility. Don't: Inheritance hierarchies. Good Example: <Card>{content}</Card>. Bad Example: class SpecialCard extends Card. Severity: Medium. Docs: https://react.dev/learn/thinking-in-react.