Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/patterns/react-patterns/provider-pattern.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ With the Provider pattern, we can share the theme state across multiple componen

##### Prop-drilling

Before the Context API was available, we often ended up we often end up with something called _prop drilling_ when we wanted to share data across multiple components. This is the case when we pass props far down the component tree.
Before the Context API was available, we often ended up with something called _prop drilling_ when we wanted to share data across multiple components. This is the case when we pass props far down the component tree.

![PresCon](https://res.cloudinary.com/dq8xfyhu4/image/upload/v1653774712/FM%20Workshop/react-state-patterns/provider-pattern/frontendmasters26.001_ztmpdv.png)

Expand Down