From ae4be81af8a46dc5b90ca8cc2a20d365a7a2547a Mon Sep 17 00:00:00 2001 From: Dohun-choi Date: Fri, 26 Jul 2024 20:50:03 +0900 Subject: [PATCH] fix: correct mistranslation --- src/content/learn/you-might-not-need-an-effect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/you-might-not-need-an-effect.md b/src/content/learn/you-might-not-need-an-effect.md index 754b7983d..41215bd0b 100644 --- a/src/content/learn/you-might-not-need-an-effect.md +++ b/src/content/learn/you-might-not-need-an-effect.md @@ -619,7 +619,7 @@ React에서 데이터는 부모 컴포넌트에서 자식 컴포넌트로 흐릅 function Parent() { const data = useSomeAPI(); // ... - // ✅ 좋습니다: 자식에서 데이터를 전달 + // ✅ 좋습니다: 자식에게 데이터 전달하기 return ; }