What is prop drilling?
Props and State
Audio flashcard · 0:12Nortren·
What is prop drilling?
0:12
Prop drilling is the practice of passing props through many intermediate components that do not use them, just to reach a deeply nested child. It can be reduced by using React Context, composition, or a state management library.