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: src/content/learn/index.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,36 +4,35 @@ title: Quick Start
4
4
5
5
<Intro>
6
6
7
-
Welcome to the React documentation! This page will give you an introduction to the 80% of React concepts that you will use on a daily basis.
8
-
7
+
Добро пожаловать в документацию React! Эта страница послужит вам введением в 80% концептов React, которые вы будете использовать каждый день.
9
8
</Intro>
10
9
11
10
<YouWillLearn>
12
11
13
-
-How to create and nest components
14
-
-How to add markup and styles
15
-
-How to display data
16
-
-How to render conditions and lists
17
-
-How to respond to events and update the screen
18
-
-How to share data between components
12
+
-Как создавать и вкладывать компоненты
13
+
-Как добавлять разметку и стили
14
+
-Как отображать данные
15
+
-Как отрисовывать условия и списки
16
+
-Как реагировать на события и обновлять экран
17
+
-Как обмениваться данными между компонентами
19
18
20
19
</YouWillLearn>
21
20
22
21
## Creating and nesting components {/*components*/}
23
22
24
-
React apps are made out of *components*. A component is a piece of the UI (user interface) that has its own logic and appearance. A component can be as small as a button, or as large as an entire page.
23
+
Приложения на React собираются из *компонентов*. Компонент — это часть пользовательского интерфейса, у которой есть свои логика и внешность. Компоненты в размерах разнятся от мелких кнопок до больших цельных страниц.
25
24
26
-
React components are JavaScript functions that return markup:
25
+
Компоненты React — это Javascript-функции, которые возвращают разметку:
27
26
28
27
```js
29
28
functionMyButton() {
30
29
return (
31
-
<button>I'm a button</button>
30
+
<button>Я кнопка</button>
32
31
);
33
32
}
34
33
```
35
34
36
-
Now that you've declared`MyButton`, you can nest it into another component:
35
+
Теперь, когда вы объявили`MyButton`, вы можете вложить его в другой компонент:
37
36
38
37
```js {5}
39
38
exportdefaultfunctionMyApp() {
@@ -46,9 +45,9 @@ export default function MyApp() {
46
45
}
47
46
```
48
47
49
-
Notice that`<MyButton />`starts with a capital letter. That's how you know it's a Reactcomponent. React component names must always start with a capital letter, whileHTMLtags must be lowercase.
48
+
Заметьте, что`<MyButton />`начинается с заглавной буквы. Это отличительная черта компонентов React. Названия компонентов в React должны всегда начинаться с заглавной буквы, а теги HTML — с маленькой.
0 commit comments