provide/inject let an ancestor component supply data to any descendant, no matter how deep, without passing props through every intermediate component. They solve prop drilling.
The problem: prop drilling
App → Layout → Sidebar → Menu → MenuItem
If only needs the , passing it as a prop through , , and (which don't use it) is tedious and noisy. / skip the middle.
