You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/reference-react.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ React 컴포넌트를 사용하면 UI를 독립적이고 재사용할 수 있는
26
26
27
27
ES6 Class를 사용하지 않는다면, `create-react-class` 모듈을 대신 사용해도 됩니다. 자세한 정보는 [ES6 없이 React를 사용하기](/docs/react-without-es6.html) 문서에서 확인할 수 있습니다.
28
28
29
-
React 컴포넌트를 정의할 때 래핑될 수 있는 함수의 형태로 할 수도 있습니다:
29
+
React 컴포넌트를 정의할 때 래핑될 수 있는 함수의 형태로 할 수도 있습니다.
30
30
31
31
-[`React.memo`](#reactmemo)
32
32
@@ -41,7 +41,7 @@ UI의 형태를 설명하는 데에 [JSX를 사용할 것](/docs/introducing-jsx
41
41
42
42
### 요소 변환하기 {#transforming-elements}
43
43
44
-
`React`는 요소를 조작하는 API들을 제공합니다:
44
+
`React`는 요소를 조작하는 API들을 제공합니다.
45
45
46
46
-[`cloneElement()`](#cloneelement)
47
47
-[`isValidElement()`](#isvalidelement)
@@ -60,14 +60,14 @@ UI의 형태를 설명하는 데에 [JSX를 사용할 것](/docs/introducing-jsx
60
60
61
61
### Suspense {#suspense}
62
62
63
-
Suspense를 사용하면 컴포넌트가 렌더링 전에 "기다립니다". 현재 Suspense는 단 하나의 사용례만 지원합니다: [`React.lazy`를 사용하여 컴포넌트를 동적으로 불러오기](/docs/code-splitting.html#reactlazy). 나중에는 데이터 불러오기와 같은 사용례를 지원할 계획입니다.
63
+
Suspense를 사용하면 컴포넌트가 렌더링 전에 "기다립니다". 현재 Suspense는 단 하나의 사용례 [`React.lazy`를 사용하여 컴포넌트를 동적으로 불러오기](/docs/code-splitting.html#reactlazy)만 지원합니다. 나중에는 데이터 불러오기와 같은 사용례를 지원할 계획입니다.
64
64
65
65
-[`React.lazy`](#reactlazy)
66
66
-[`React.Suspense`](#reactsuspense)
67
67
68
68
### Hooks {#hooks}
69
69
70
-
*Hooks*는 React 16.8에 새로 추가되었습니다. Hooks를 사용하면 클래스를 사용하지 않아도 상태와 React 기능들을 사용할 수 있도록 해줍니다. Hooks만을 다루는 [문서](https://reactjs.org/docs/hooks-intro.html)와 API 문서가 존재합니다:
70
+
*Hooks*는 React 16.8에 새로 추가되었습니다. Hooks를 사용하면 클래스를 사용하지 않아도 상태와 React 기능들을 사용할 수 있도록 해줍니다. Hooks만을 다루는 [문서](https://reactjs.org/docs/hooks-intro.html)와 API 문서가 존재합니다.
0 commit comments