React

Introduction to React - The concept of prop drilli...

6.

What is prop drilling in React?

It is the process of passing data from a parent component to its child components through multiple levels of nesting.

It is a technique to make data available globally across all components in a React application.

It is a way to pass data between sibling components without involving their parent component.

It is a method to access data directly from the global state without passing it down as props.