Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #253 from NessunKim/patch-1
Browse files Browse the repository at this point in the history
docs(ko-kr): fix typo
  • Loading branch information
davedbase authored Oct 9, 2023
2 parents c717da5 + 13381eb commit 36bbc74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions langs/ko-kr/tutorials/async_lazy/lesson.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
Solid의 `lazy` 메서드를 사용하면 지연된 로딩을 위해 컴포넌트의 동적 임포트를 래핑할 수 있습니다.
반환값은 JSX 템플릿에서 사용할 수 있는 컴포넌트입니다. 다만 처음 렌더링될 때 내부적으로는 임포트한 코드를 동적으로 로드하여, 코드를 사용할 수 있을 때까지 해당 렌더링 분기를 중지합니다.

lazy`를 사용하려면, 다음과 같은 임포트 문을:
`lazy`를 사용하려면, 다음과 같은 임포트 문을
```js
import Greeting from "./greeting";
```

아래와 같이 변경합니다:
아래와 같이 변경합니다.
```js
const Greeting = lazy(() => import("./greeting"));
```

변경하더라도 너무 빨리 로드되기 때문에 눈으로 확인하기는 힘들기 때문에, 좀 더 잘 보이도록 다음과 같이 딜레이를 추가합니다:
변경하더라도 너무 빨리 로드되어 눈으로 확인하기는 힘들기 때문에, 좀 더 잘 보이도록 다음과 같이 딜레이를 추가합니다.

```js
const Greeting = lazy(async () => {
Expand Down

0 comments on commit 36bbc74

Please sign in to comment.