Skip to content

chore: 오타 수정 #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 14, 2025
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 @@ -8,7 +8,7 @@ Props Drilling은 부모 컴포넌트와 자식 컴포넌트 사이에 결합도

## 📝 코드 예시

다음 코드는 사용자가 `item`을 선택할 때 사용하는 `<ItemSelectorModal />` 컴포넌트예요.
다음 코드는 사용자가 `item`을 선택할 때 사용하는 `<ItemEditModal />` 컴포넌트예요.
사용자가 키워드를 입력해서 아이템 목록을 검색하고, 찾고 있었던 아이템을 선택하면 `onConfirm`이 호출돼요.

사용자가 입력한 키워드는 `keyword`, 선택할 수 있는 아이템은 `items`, 추천 아이템의 목록은 `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 @@ -8,7 +8,7 @@ Props Drilling is a clear indication that there is coupling between parent and c

## 📝 Code Example

The following code is the `<ItemSelectorModal />` component used when a user selects an `item`.
The following code is the `<ItemEditModal />` component used when a user selects an `item`.
The user can enter a keyword to search the item list, and when the desired item is found and selected, `onConfirm` is called.

The keyword entered by the user is passed as the `keyword` prop, the selectable items are passed as the `items` prop, and the list of recommended items is passed as the `recommendedItems` prop.
Expand Down