From 7d2dfa15ab204ef091825dd2e28f7a99b344e9d9 Mon Sep 17 00:00:00 2001 From: jgjgill <79239852+jgjgill@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:59:07 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=98=A4=ED=83=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/examples/item-edit-modal.md | 2 +- en/code/examples/item-edit-modal.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/examples/item-edit-modal.md b/code/examples/item-edit-modal.md index af9dee0f..98826adb 100644 --- a/code/examples/item-edit-modal.md +++ b/code/examples/item-edit-modal.md @@ -8,7 +8,7 @@ Props Drilling은 부모 컴포넌트와 자식 컴포넌트 사이에 결합도 ## 📝 코드 예시 -다음 코드는 사용자가 `item`을 선택할 때 사용하는 `` 컴포넌트예요. +다음 코드는 사용자가 `item`을 선택할 때 사용하는 `` 컴포넌트예요. 사용자가 키워드를 입력해서 아이템 목록을 검색하고, 찾고 있었던 아이템을 선택하면 `onConfirm`이 호출돼요. 사용자가 입력한 키워드는 `keyword`, 선택할 수 있는 아이템은 `items`, 추천 아이템의 목록은 `recommendedItems` 프롭으로 전달돼요. diff --git a/en/code/examples/item-edit-modal.md b/en/code/examples/item-edit-modal.md index 0766cdc9..f6643a53 100644 --- a/en/code/examples/item-edit-modal.md +++ b/en/code/examples/item-edit-modal.md @@ -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 `` component used when a user selects an `item`. +The following code is the `` 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.