React Guideline: Components — Colocate related code. Description: Keep related components and hooks together. Do: Related files in same directory. Don't: Flat structure with many files. Good Example: components/User/UserCard.tsx. Bad Example: components/UserCard.tsx + hooks/useUser.ts. Severity: Low. Docs: .