Skip to content

Commit 7292133

Browse files
authored
Update higher-order-components.md
1 parent 0d20b93 commit 7292133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/docs/higher-order-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: 고차 컴포넌트
44
permalink: docs/higher-order-components.html
55
---
66

7-
고차 컴포넌트 (HOC, Higher Order Component) 는 컴포넌트 로직을 재사용하기 위한 React의 고급 기술입니다. HOC는 React API의 일부가 아니며, 리액트의 구성적 특성에서 나오는 패턴입니다.
7+
고차 컴포넌트(HOC, Higher Order Component)는 컴포넌트 로직을 재사용하기 위한 React의 고급 기술입니다. 고차 컴포넌트(HOC)는 React API의 일부가 아니며, 리액트의 구성적 특성에서 나오는 패턴입니다.
88

9-
구체적으로, **고차 컴포넌트는 컴포넌트를 가져와 새 컴포넌트를 리턴(반환)하는 함수입니다..**
9+
구체적으로, **고차 컴포넌트는 컴포넌트를 가져와 새 컴포넌트를 반환하는 함수입니다.**
1010

1111
```js
1212
const EnhancedComponent = higherOrderComponent(WrappedComponent);

0 commit comments

Comments
 (0)