From 52beca6f5280abb7c6903f76b0f5b46db10f9db1 Mon Sep 17 00:00:00 2001 From: inhachoi Date: Sun, 23 Nov 2025 13:40:32 +0900 Subject: [PATCH] Translate src/content/learn/reusing-logic-with-custom-hooks.md --- src/content/learn/reusing-logic-with-custom-hooks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/learn/reusing-logic-with-custom-hooks.md b/src/content/learn/reusing-logic-with-custom-hooks.md index 7b1e8f177..c6d000daf 100644 --- a/src/content/learn/reusing-logic-with-custom-hooks.md +++ b/src/content/learn/reusing-logic-with-custom-hooks.md @@ -1412,7 +1412,7 @@ function SaveButton() { #### React가 데이터 패칭을 위한 내부 해결책을 제공할까요? {/*will-react-provide-any-built-in-solution-for-data-fetching*/} -Today, with the [`use`](/reference/react/use#streaming-data-from-server-to-client) API, data can be read in render by passing a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) to `use`: +현재는 [`use`](/reference/react/use#streaming-data-from-server-to-client) API를 사용해, 렌더링 단계에서 [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)를 `use`에 넘겨 데이터를 읽을 수 있습니다. ```js {1,4,11} import { use, Suspense } from "react"; @@ -1431,7 +1431,7 @@ export function MessageContainer({ messagePromise }) { } ``` -We're still working out the details, but we expect that in the future, you'll write data fetching like this: +아직 세부 사항을 조정 중이지만, 나중에는 데이터 패칭을 다음과 같이 작성할 것입니다. ```js {1,4,6} import { use } from 'react';