Skip to content

Commit c9817cc

Browse files
merging all conflicts
2 parents 9698d16 + c0c955e commit c9817cc

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"@radix-ui/react-context-menu": "^2.1.5",
3434
"body-scroll-lock": "^3.1.3",
3535
"classnames": "^2.2.6",
36-
"date-fns": "^2.16.1",
3736
"debounce": "^1.2.1",
3837
"github-slugger": "^1.3.0",
3938
"next": "15.1.0",

src/content/reference/rsc/directives.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ title: "지시어"
1010

1111
<Intro>
1212

13+
<<<<<<< HEAD
1314
지시어는 [React 서버 컴포넌트와 호환되는 번들러](/learn/start-a-new-react-project#bleeding-edge-react-frameworks)에게 지시사항을 제공합니다.
15+
=======
16+
Directives provide instructions to [bundlers compatible with React Server Components](/learn/start-a-new-react-project#full-stack-frameworks).
17+
>>>>>>> c0c955ed1d1c4fe3bf3e18c06a8d121902a01619
1418
1519
</Intro>
1620

src/content/reference/rsc/server-components.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ title: 서버 컴포넌트
44

55
<RSC>
66

7+
<<<<<<< HEAD
78
서버 컴포넌트는 [React 서버 컴포넌트](/learn/start-a-new-react-project#bleeding-edge-react-frameworks)에서 사용합니다.
9+
=======
10+
Server Components are for use in [React Server Components](/learn/start-a-new-react-project#full-stack-frameworks).
11+
>>>>>>> c0c955ed1d1c4fe3bf3e18c06a8d121902a01619
812
913
</RSC>
1014

@@ -22,7 +26,11 @@ title: 서버 컴포넌트
2226

2327
#### 서버 컴포넌트를 지원하려면 어떻게 해야 하나요? {/*how-do-i-build-support-for-server-components*/}
2428

29+
<<<<<<< HEAD
2530
React 19의 서버 컴포넌트는 안정적이며 마이너(Minor) 버전 간에는 변경되지 않습니다. 그러나 React 서버 컴포넌트 번들러나 프레임워크를 구현하는 데 사용되는 기본 API는 시맨틱 버전(semver)을 따르지 않으며 React 19.x의 마이너(Minor) 버전 간에 변경될 수 있습니다.
31+
=======
32+
While React Server Components in React 19 are stable and will not break between minor versions, the underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x.
33+
>>>>>>> c0c955ed1d1c4fe3bf3e18c06a8d121902a01619
2634
2735
React 서버 컴포넌트를 번들러나 프레임워크로 지원하려면, 특정 React 버전에 고정하거나 Canary 릴리즈를 사용하는 것을 권장합니다. 향후 React 서버 컴포넌트를 구현하는 데 사용되는 API를 안정화하기 위해 번들러 및 프레임워크와 계속 협력할 것입니다.
2836

src/content/reference/rsc/use-client.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ export default function RichTextEditor({ timestamp, text }) {
4141
}
4242
```
4343

44+
<<<<<<< HEAD
4445
서버 컴포넌트에서 `'use client'`라 표시된 파일을 가져오면 [호환되는 번들러](/learn/start-a-new-react-project#bleeding-edge-react-frameworks)는 모듈 불러오기<sup>Module Import</sup>를 서버 실행 코드와 클라이언트 실행 코드 사이의 경계로 처리합니다.
46+
=======
47+
When a file marked with `'use client'` is imported from a Server Component, [compatible bundlers](/learn/start-a-new-react-project#full-stack-frameworks) will treat the module import as a boundary between server-run and client-run code.
48+
>>>>>>> c0c955ed1d1c4fe3bf3e18c06a8d121902a01619
4549
4650
`RichTextEditor`의 의존성으로 인하여, `formatDate``Button`의 모듈에 `'use client'` 지시어가 포함되어 있지 않더라도 클라이언트에서 평가됩니다. 하나의 모듈이 서버 코드에서 가져올 때는 서버에서, 클라이언트 코드에서 가져올 때는 클라이언트에서 평가될 수 있음을 유의해야 합니다.
4751

yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3183,11 +3183,6 @@ data-view-byte-offset@^1.0.0:
31833183
es-errors "^1.3.0"
31843184
is-data-view "^1.0.1"
31853185

3186-
date-fns@^2.16.1:
3187-
version "2.28.0"
3188-
resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz"
3189-
integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==
3190-
31913186
debounce@^1.2.1:
31923187
version "1.2.1"
31933188
resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"

0 commit comments

Comments
 (0)