What is composition in React and why is it preferred over inheritance?
Audio flashcard · 0:13
Nortren·
What is composition in React and why is it preferred over inheritance?
0:13
Composition is building complex UIs by combining small, focused components through props and children. React explicitly recommends it over inheritance because it is more flexible, avoids deep class hierarchies, and works naturally with the component model.
---