File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
id : faq-build
3
- title : Babel, JSX, and Build Steps
3
+ title : Babel, JSX, 그리고 빌드 과정들
4
4
permalink : docs/faq-build.html
5
5
layout : docs
6
6
category : FAQ
7
7
---
8
8
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}
10
10
11
- No! Check out [ "React Without JSX "] ( /docs/react-without-jsx.html ) to learn more .
11
+ 아니요! 더 자세한 내용을 위해 [ "JSX 없이 React 사용하기 "] ( /docs/react-without-jsx.html ) 를 확인해 주세요 .
12
12
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}
14
14
15
- No! Check out [ "React Without ES6 "] ( /docs/react-without-es6.html ) to learn more .
15
+ 아니요! 더 자세한 내용을 위해 [ "ES6 없이 React 사용하기 "] ( /docs/react-without-es6.html ) 를 확인해 주세요 .
16
16
17
- ### How can I write comments in JSX ? {#how-can-i-write-comments-in-jsx}
17
+ ### JSX에서 어떻게 주석을 달 수 있나요 ? {#how-can-i-write-comments-in-jsx}
18
18
19
19
``` jsx
20
20
< div>
21
- {/* Comment goes here */ }
21
+ {/* 주석은 여기에 */ }
22
22
Hello, {name}!
23
23
< / div>
24
24
```
25
25
26
26
``` jsx
27
27
< div>
28
- {/* It also works
29
- for multi-line comments . */ }
28
+ {/* 여러 줄의
29
+ 주석도 가능합니다 . */ }
30
30
Hello, {name}!
31
31
< / div>
32
32
```
You can’t perform that action at this time.
0 commit comments