Skip to content
Merged
Show file tree
Hide file tree
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 code/examples/item-edit-modal.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Props Drilling이 발생하면, 프롭을 불필요하게 참조하는 컴포넌
그런데 프롭이 변경되면 프롭을 참조하는 모든 컴포넌트가 수정되어야 해요.

예를 들어, 더 이상 아이템에 대한 추천 기능이 사라져서 `recommendedItems` 를 삭제해야 한다면, 연관된 모든 컴포넌트에서 삭제해야 하죠.
코드 수정범위가 필요 이상으로 넓고, 결합도가 낮아요.
코드 수정범위가 필요 이상으로 넓고, 결합도가 높아요.

## ✏️ 개선해보기

Expand Down
2 changes: 1 addition & 1 deletion en/code/examples/item-edit-modal.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ When Props Drilling occurs, the number of components unnecessarily referencing t
If the props change, all components referencing them need to be modified.

For example, if the recommendation feature for items is removed and `recommendedItems` needs to be deleted, it must be removed from all related components.
The scope of code modification becomes unnecessarily wide, and the coupling is low.
The scope of code modification becomes unnecessarily wide, and the coupling is high.

## ✏️ Work on Improving

Expand Down