From fac23cd2d46cadfdb625600a36c88e51a567ddb1 Mon Sep 17 00:00:00 2001 From: lee-eojin Date: Tue, 30 Jun 2026 16:26:27 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20useInsertionEffect=20DeepDive=20?= =?UTF-8?q?=EB=AF=B8=EB=B2=88=EC=97=AD=20=EB=AC=B8=EC=9E=A5=20=EB=B2=88?= =?UTF-8?q?=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/reference/react/useInsertionEffect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/reference/react/useInsertionEffect.md b/src/content/reference/react/useInsertionEffect.md index e1a2ddd60..41231e2f5 100644 --- a/src/content/reference/react/useInsertionEffect.md +++ b/src/content/reference/react/useInsertionEffect.md @@ -134,7 +134,7 @@ function useCSS(rule) { #### 이것이 렌더링 중에 스타일을 주입하거나 useLayoutEffect를 사용하는 것보다 어떻게 더 나은가요? {/*how-is-this-better-than-injecting-styles-during-rendering-or-uselayouteffect*/} -If you insert styles during rendering and React is processing a [non-blocking update,](/reference/react/useTransition#perform-non-blocking-updates-with-actions) the browser will recalculate the styles every single frame while rendering a component tree, which can be **extremely slow.** +렌더링 중에 스타일을 주입하는데 React가 [non-blocking update](/reference/react/useTransition#perform-non-blocking-updates-with-actions)를 처리하고 있다면, 브라우저는 컴포넌트 트리를 렌더링하는 동안 매 프레임마다 스타일을 다시 계산하므로 **극도로 느려질 수 있습니다.** `useInsertionEffect`는 컴포넌트에서 다른 Effect가 실행될 때 `