Why Prop Drilling is bad for your React Application

Originally published at: https://caribbean.dev/why-prop-drilling-is-bad-for-your-react-application/

Prop drilling, also known as “prop-chain” or “prop-tunneling,” refers to the practice of passing props down through multiple levels of components in a React application in order to make those props available to a deeply nested component. This can become problematic as the depth of the component tree increases and the props need to be…

1 Like