Skip to content

Commit 3f26799

Browse files
sukjaetaehwanno
authored andcommitted
Translated docs/faq-build into Korean (#81)
1 parent 3e2dddd commit 3f26799

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: content/docs/faq-build.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
22
id: faq-build
3-
title: Babel, JSX, and Build Steps
3+
title: Babel, JSX, 그리고 빌드 과정들
44
permalink: docs/faq-build.html
55
layout: docs
66
category: FAQ
77
---
88

9-
### Do I need to use JSX with React? {#do-i-need-to-use-jsx-with-react}
9+
### React에 JSX를 꼭 사용해야 하나요? {#do-i-need-to-use-jsx-with-react}
1010

11-
No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more.
11+
아니요! 더 자세한 내용을 위해 ["JSX 없이 React 사용하기"](/docs/react-without-jsx.html) 를 확인해 주세요.
1212

13-
### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react}
13+
### React에 ES6 (+)를 꼭 사용해야 하나요? {#do-i-need-to-use-es6--with-react}
1414

15-
No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more.
15+
아니요! 더 자세한 내용을 위해 ["ES6 없이 React 사용하기"](/docs/react-without-es6.html) 를 확인해 주세요.
1616

17-
### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx}
17+
### JSX에서 어떻게 주석을 달 수 있나요? {#how-can-i-write-comments-in-jsx}
1818

1919
```jsx
2020
<div>
21-
{/* Comment goes here */}
21+
{/* 주석은 여기에 */}
2222
Hello, {name}!
2323
</div>
2424
```
2525

2626
```jsx
2727
<div>
28-
{/* It also works
29-
for multi-line comments. */}
28+
{/* 여러 줄의
29+
주석도 가능합니다. */}
3030
Hello, {name}!
3131
</div>
3232
```

0 commit comments

Comments
 (0)