0 votes
1 view
by
Is prop drilling an anti-pattern?

1 Answer

0 votes
by
Prop drilling is an anti-pattern where the developer passes down a prop through multiple levels of components simply to access data defined higher up the tree in a deeply nested level. Coding this way can lead to hard-to-maintain code.
...