Prop drilling refers to the practice of passing ________ through multiple levels of components.

  • Component props
  • Context API values
  • Redux actions
  • Stateful data
Prop drilling is the process of passing component props through multiple levels of nested components to reach a deeply nested child component that needs access to those props. This can lead to maintenance challenges and make the code less maintainable.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *