Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/reference/react-dom/createPortal.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Portal은 DOM 노드의 물리적 배치만 변경합니다. 이외의 모든

#### 매개변수 {/*parameters*/}

* `children` : JSX의 일부(`<div />` 또는 `<SomeComponent />`), [`<Fragment>`](/reference/react/Fragment)(`<>...</>`), 문자열이나 숫자 또는 이들의 배열과 같이 React로 렌더링할 수 있는 모든 것입니다.
* `children`: JSX의 일부(`<div />` 또는 `<SomeComponent />`), [`<Fragment>`](/reference/react/Fragment)(`<>...</>`), 문자열이나 숫자 또는 이들의 배열과 같이 React로 렌더링할 수 있는 모든 것입니다.

* `domNode` : `document.getElementById()`가 반환하는 것과 같은 일부 DOM 노드. 노드가 이미 존재해야 합니다. 업데이트 중에 다른 DOM 노드를 전달하면 Portal 콘텐츠가 다시 생성됩니다.
* `domNode`: `document.getElementById()`가 반환하는 것과 같은 일부 DOM 노드. 노드가 이미 존재해야 합니다. 업데이트 중에 다른 DOM 노드를 전달하면 Portal 콘텐츠가 다시 생성됩니다.

* **optional** `key`: A unique string or number to be used as the portal's [key.](/learn/rendering-lists#keeping-list-items-in-order-with-key)
* **optional** `key`: Portal의 [`key`](/learn/rendering-lists#keeping-list-items-in-order-with-key)로 사용할 고유한 문자열 또는 숫자입니다.

#### 반환값 {/*returns*/}

Expand Down
Loading