Tag view

#components

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with components

2 cards

React Medium Theory

Higher-order components, controlled vs uncontrolled components, and good component quality

Higher-order components wrap behavior, while controlled and uncontrolled components describe where important state lives.

  • HOCs enhance components via composition
  • Controlled components receive value and change handlers from state
  • Good components stay predictable and testable

Higher-order components, controlled vs uncontrolled components, and good component quality

React Medium Theory

React components: function, class, pure, smart, dumb, and reusable design

React components are reusable UI units, and interviews often compare function components, class components, pure components, and presentation-focused designs.

  • Function components are the modern default
  • Class components still matter for older codebases
  • Good components stay focused and reusable

React components: function, class, pure, smart, dumb, and reusable design