Skip to content

Commit 4f209f5

Browse files
authored
Update src/routes/(0)concepts/(0)components/(2)props.mdx
unpack "cumbersome" with "cluttered and confusing"
1 parent b7b150d commit 4f209f5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/routes/(0)concepts/(0)components/(2)props.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ function ColoredList(props) {
128128
## Prop drilling
129129

130130
Prop drilling refers to passing props through multiple layers of components.
131-
While this is a valid pattern, it can become cumbersome in larger component trees, especially when intermediate components receive values they do not directly use.
131+
While this is a valid pattern, it can cause props to become cluttered and confusing
132+
in larger component trees, especially when intermediate components receive values they do not directly use.
132133

133134
When multiple components across different levels need access to the same data, Solid’s [Context](/concepts/context) API provides a cleaner alternative. [Context](/concepts/context) allows you to supply values to deeply nested components without manually threading props through each layer.

0 commit comments

Comments
 (0)