Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(cn): translate content/docs/faq-build.md into Chinese #167

Merged
merged 3 commits into from
Apr 1, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions content/docs/faq-build.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
id: faq-build
title: Babel, JSX, and Build Steps
title: Babel, JSX, 及构建过程
permalink: docs/faq-build.html
layout: docs
category: FAQ
---

### Do I need to use JSX with React? {#do-i-need-to-use-jsx-with-react}
### 我必须在 React 中使用 JSX 吗? {#do-i-need-to-use-jsx-with-react}

No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more.
不!查阅[“不使用 JSX](/docs/react-without-jsx.html)以了解更多信息。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
不!查阅[“不使用 JSX”](/docs/react-without-jsx.html)以了解更多信息。
不!查阅[“不使用 JSX 的 React](/docs/react-without-jsx.html)以了解更多信息。

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@LeoEatle 这个遵循标题就好,群里讨论过这个问题~


### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react}
### 我必须在 React 中使用 ES6 (+) 吗? {#do-i-need-to-use-es6--with-react}

No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more.
不!查阅[“不使用 ES6](/docs/react-without-es6.html)以了解更多信息。
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
不!查阅[“不使用 ES6”](/docs/react-without-es6.html)以了解更多信息。
不!查阅[“不使用 ES6 的 React](/docs/react-without-es6.html)以了解更多信息。


### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx}
### 我怎样才能在 JSX 中写注释? {#how-can-i-write-comments-in-jsx}

```jsx
<div>
{/* Comment goes here */}
{/* 注释写在这里 */}
Hello, {name}!
</div>
```

```jsx
<div>
{/* It also works
for multi-line comments. */}
{/* 多行注释
也同样有效。 */}
Hello, {name}!
</div>
```