You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/docs/hello-world.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ prev: cdn-links.html
6
6
next: introducing-jsx.html
7
7
---
8
8
9
-
The smallest React example looks like this:
9
+
最简易的 React 示例如下:
10
10
11
11
```js
12
12
ReactDOM.render(
@@ -15,36 +15,36 @@ ReactDOM.render(
15
15
);
16
16
```
17
17
18
-
It displays a heading saying "Hello, world!" on the page.
18
+
它将在页面上展示一个 "Hello, world!" 的标题。
19
19
20
-
[](codepen://hello-world)
20
+
[在 CodePen 上尝试](codepen://hello-world)
21
21
22
-
Click the link above to open an online editor. Feel free to make some changes, and see how they affect the output. Most pages in this guide will have editable examples like this one.
In this guide, we will examine the building blocks of React apps: elements and components. Once you master them, you can create complex apps from small reusable pieces.
>This guide is designed for people who prefer **learning concepts step by step**. If you prefer to learn by doing, check out our [practical tutorial](/tutorial/tutorial.html). You might find this guide and the tutorial complementary to each other.
This is the first chapter in a step-by-step guide about main React concepts. You can find a list of all its chapters in the navigation sidebar. If you're reading this from a mobile device, you can access the navigation by pressing the button in the bottom right corner of your screen.
Every chapter in this guide builds on the knowledge introduced in earlier chapters. **You can learn most of React by reading the “Main Concepts” guide chapters in the order they appear in the sidebar.**For example, [“Introducing JSX”](/docs/introducing-jsx.html) is the next chapter after this one.
React is a JavaScript library, and so we'll assume you have a basic understanding of the JavaScript language. **If you don't feel very confident, we recommend [going through a JavaScript tutorial](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) to check your knowledge level** and enable you to follow along this guide without getting lost. It might take you between 30 minutes and an hour, but as a result you won't have to feel like you're learning both React and JavaScript at the same time.
>This guide occasionally uses some of the newer JavaScript syntax in the examples. If you haven't worked with JavaScript in the last few years, [these three points](https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c) should get you most of the way.
0 commit comments