From cb98d3a2aa361af7ac08887d2655f67ac4d7f616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=98=88=EC=95=88?= Date: Thu, 4 Jun 2026 16:02:44 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20duplicate=20particle=20typo=20in?= =?UTF-8?q?=20Children=20(=EC=9D=80=EC=9D=80=20=E2=86=92=20=EC=9D=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/reference/react/Children.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/reference/react/Children.md b/src/content/reference/react/Children.md index c9458d930..ea30dd394 100644 --- a/src/content/reference/react/Children.md +++ b/src/content/reference/react/Children.md @@ -847,7 +847,7 @@ export default function TabSwitcher({ tabIds, getHeader, renderContent }) { `renderContent`와 같이 사용자 인터페이스의 일부를 어떻게 렌더링할지 정의하는 Prop를 *렌더링 Prop*라고 합니다. 하지만 특별한 것은 아닙니다. 단지 일반적인 함수의 Prop일 뿐입니다. -렌더링 Prop은은 함수이므로 정보를 전달할 수 있습니다. +렌더링 Prop은 함수이므로 정보를 전달할 수 있습니다. 아래 예시에서 `RowList` 컴포넌트는 각 row의 `id`와 `index`를 `renderRow`에 렌더링 Prop로 전달하고, `index`가 짝수인 row를 강조합니다.