Skip to content

Commit af2f75a

Browse files
authored
Merge branch 'main' into translate-create-root-parameter-optional
2 parents 7b10560 + 2206f5f commit af2f75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/learn/tutorial-tic-tac-toe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ body {
708708

709709
### 사용자와 상호작용하는 컴포넌트 만들기 {/*making-an-interactive-component*/}
710710

711-
이제 `Square` 컴포넌트를 클릭하면 `X`로 채워보겠습니다. `Square` 내부에 `handleClick` 함수를 선언하세요. 그런 다음 `Square` 컴포넌트에서 반환된 JSX 버튼의 Props에 `onClick` 추가하세요.
711+
이제 `Square` 컴포넌트를 클릭하면 `X`로 채워보겠습니다. `Square` 컴포넌트 내부에 `handleClick` 함수를 선언하세요. 그런 다음 `Square` 컴포넌트에서 반환<sup>`return`</sup>된 JSX 버튼<sup>`<button>`</sup> 요소에 `onClick` Props를 추가하세요.
712712

713713
```js {2-4,9}
714714
function Square({ value }) {

0 commit comments

Comments
 (0)