Frontend Fundamentals Review "A component should do ONE thing well. If you're describing it with 'and', split it." When to Apply Activate this skill when reviewing: - React/Vue/Svelte components - UI rendering logic - State management code - CSS/styling decisions - Client-side routing --- Review Checklist Component Architecture - [ ] Single Responsibility : Does each component do ONE job? - [ ] Size Check : Is the component under 200 lines? - [ ] Props Count : Are there fewer than 7 props? - [ ] Naming : Can you describe the component without saying "and"? State Management - [ ] Colocation :…