Skip to content

Commit 9837812

Browse files
docs: translate index.md to Русский
1 parent 2958f53 commit 9837812

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • src/content/reference/react-dom/hooks

src/content/reference/react-dom/hooks/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ title: "Built-in React DOM Hooks"
44

55
<Intro>
66

7-
The `react-dom` package contains Hooks that are only supported for web applications (which run in the browser DOM environment). These Hooks are not supported in non-browser environments like iOS, Android, or Windows applications. If you are looking for Hooks that are supported in web browsers *and other environments* see [the React Hooks page](/reference/react). This page lists all the Hooks in the `react-dom` package.
7+
Пакет `react-dom` содержит хуки, которые поддерживаются только в веб-приложениях (работающих в среде браузерного DOM). Эти хуки не поддерживаются в небраузерных средах, таких как приложения для iOS, Android или Windows. Если вы ищете хуки, которые поддерживаются в веб-браузерах *и других средах*, см. [страницу Хуки React](/reference/react). На этой странице перечислены все хуки в пакете `react-dom`.
88

99
</Intro>
1010

1111
---
1212

13-
## Form Hooks {/*form-hooks*/}
13+
## Хуки для форм {/*form-hooks*/}
1414

15-
*Forms* let you create interactive controls for submitting information. To manage forms in your components, use one of these Hooks:
15+
*Формы* позволяют создавать интерактивные элементы для отправки информации. Для управления формами в ваших компонентах используйте один из следующих хуков:
1616

17-
* [`useFormStatus`](/reference/react-dom/hooks/useFormStatus) allows you to make updates to the UI based on the status of a form.
17+
* [`useFormStatus`](/reference/react-dom/hooks/useFormStatus) позволяет обновлять UI на основе статуса формы.
1818

1919
```js
2020
function Form({ action }) {
@@ -38,4 +38,4 @@ function Button() {
3838
</button>
3939
);
4040
}
41-
```
41+
```

0 commit comments

Comments
 (0)