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/community/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: React Community
2
+
title: Спільнота React
3
3
---
4
4
5
5
<Intro>
@@ -8,7 +8,7 @@ React has a community of millions of developers. On this page we've listed some
8
8
9
9
</Intro>
10
10
11
-
## Code of Conduct {/*code-of-conduct*/}
11
+
## Кодекс поведінки {/*code-of-conduct*/}
12
12
13
13
Before participating in React's communities, [please read our Code of Conduct.](https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md) We have adopted the [Contributor Covenant](https://www.contributor-covenant.org/) and we expect that all community members adhere to the guidelines within.
Copy file name to clipboardexpand all lines: src/content/community/team.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: "Meet the Team"
2
+
title: Команда React
3
3
---
4
4
5
5
<Intro>
@@ -100,4 +100,4 @@ Current members of the React team are listed in alphabetical order below.
100
100
101
101
## Past contributors {/*past-contributors*/}
102
102
103
-
You can find the past team members and other people who significantly contributed to React over the years on the [acknowledgements](/community/acknowledgements) page.
103
+
You can find the past team members and other people who significantly contributed to React over the years on the ["Подяки"](/community/acknowledgements) page.
Copy file name to clipboardexpand all lines: src/content/learn/describing-the-ui.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -186,7 +186,7 @@ img { height: 90px; }
186
186
187
187
</LearnMore>
188
188
189
-
## JavaScript у JSX з фігурними дужками {/*javascript-in-jsx-with-curly-braces*/}
189
+
## JavaScript у JSX із фігурними дужками {/*javascript-in-jsx-with-curly-braces*/}
190
190
191
191
JSX дозволяє писати HTML-подібну розмітку всередині файлу JavaScript, зберігаючи логіку рендерингу та вміст в одному місці. Іноді вам потрібно додати трохи логіки JavaScript або посилатися на динамічну властивість у цій розмітці. Тоді ви можете використовувати фігурні дужки у своєму JSX, щоб "відкрити вікно" у JavaScript:
Copy file name to clipboardexpand all lines: src/content/learn/tutorial-tic-tac-toe.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ Once you've played around with the finished tic-tac-toe game, keep scrolling. Yo
202
202
203
203
## Setup for the tutorial {/*setup-for-the-tutorial*/}
204
204
205
-
In the live code editor below, click **Fork** in the top-right corner to open the editor in a new tab using the website CodeSandbox. CodeSandbox lets you write code in your browser and preview how your users will see the app you've created. The new tab should display an empty square and the starter code for this tutorial.
205
+
In the live code editor below, click **Відгалузити** in the top-right corner to open the editor in a new tab using the website CodeSandbox. CodeSandbox lets you write code in your browser and preview how your users will see the app you've created. The new tab should display an empty square and the starter code for this tutorial.
206
206
207
207
<Sandpack>
208
208
@@ -264,7 +264,7 @@ body {
264
264
You can also follow this tutorial using your local development environment. To do this, you need to:
265
265
266
266
1. Install [Node.js](https://nodejs.org/en/)
267
-
1. In the CodeSandbox tab you opened earlier, press the top-left corner button to open the menu, and then choose **Download Sandbox** in that menu to download an archive of the files locally
267
+
1. In the CodeSandbox tab you opened earlier, press the top-left corner button to open the menu, and then choose **Завантажити пісочницю** in that menu to download an archive of the files locally
268
268
1. Unzip the archive, then open a terminal and `cd` to the directory you unzipped
269
269
1. Install the dependencies with `npm install`
270
270
1. Run `npm start` to start a local server and follow the prompts to view the code running in a browser
Copy file name to clipboardexpand all lines: src/content/reference/react/index.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: React Reference Overview
2
+
title: Вступ до довідника React
3
3
---
4
4
5
5
<Intro>
@@ -29,14 +29,14 @@ React-dom contains features that are only supported for web applications (which
29
29
*[Client APIs](/reference/react-dom/client) - The `react-dom/client` APIs let you render React components on the client (in the browser).
30
30
*[Server APIs](/reference/react-dom/server) - The `react-dom/server` APIs let you render React components to HTML on the server.
31
31
32
-
## Rules of React {/*rules-of-react*/}
32
+
## Правила React {/*rules-of-react*/}
33
33
34
34
React has idioms — or rules — for how to express patterns in a way that is easy to understand and yields high-quality applications:
35
35
36
36
*[Components and Hooks must be pure](/reference/rules/components-and-hooks-must-be-pure) – Purity makes your code easier to understand, debug, and allows React to automatically optimize your components and hooks correctly.
37
37
*[React calls Components and Hooks](/reference/rules/react-calls-components-and-hooks) – React is responsible for rendering components and hooks when necessary to optimize the user experience.
38
38
*[Rules of Hooks](/reference/rules/rules-of-hooks) – Hooks are defined using JavaScript functions, but they represent a special type of reusable UI logic with restrictions on where they can be called.
39
39
40
-
## Legacy APIs {/*legacy-apis*/}
40
+
## Спадкові API {/*legacy-apis*/}
41
41
42
42
*[Legacy APIs](/reference/react/legacy) - Exported from the `react` package, but not recommended for use in newly written code.
Copy file name to clipboardexpand all lines: src/content/reference/react/legacy.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: "Legacy React APIs"
2
+
title: "Спадкові API в React"
3
3
---
4
4
5
5
<Intro>
@@ -10,7 +10,7 @@ These APIs are exported from the `react` package, but they are not recommended f
10
10
11
11
---
12
12
13
-
## Legacy APIs {/*legacy-apis*/}
13
+
## Спадкові API {/*legacy-apis*/}
14
14
15
15
*[`Children`](/reference/react/Children) lets you manipulate and transform the JSX received as the `children` prop. [See alternatives.](/reference/react/Children#alternatives)
16
16
*[`cloneElement`](/reference/react/cloneElement) lets you create a React element using another element as a starting point. [See alternatives.](/reference/react/cloneElement#alternatives)
@@ -23,7 +23,7 @@ These APIs are exported from the `react` package, but they are not recommended f
0 commit comments