What is 'prop drilling' and how can HOCs help with it?
Prop drilling is the process of passing props through multiple levels of component hierarchy to reach deeply nested components. HOCs can help with this by using React's Context API or state management to provide data directly to nested components without having to pass props through each intermediate component.