React Guideline: Components — Keep components small and focused. Description: Single responsibility for each component. Do: One concern per component. Don't: Large multi-purpose components. Good Example: <UserAvatar /><UserName />. Bad Example: <UserCard /> with 500 lines. Severity: Medium. Docs: .