Skip to content

Commit d63adb2

Browse files
authored
Merge pull request #723 from reactjs/tr/react-dom-hooks-index
Translate "Built-in React DOM Hooks"
2 parents ab0bcab + 983f0d3 commit d63adb2

File tree

1 file changed

+7
-7
lines changed
  • src/content/reference/react-dom/hooks

1 file changed

+7
-7
lines changed

Diff for: src/content/reference/react-dom/hooks/index.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
---
2-
title: "Built-in React DOM Hooks"
2+
title: "組み込みの React DOM フック"
33
---
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 環境で実行される)ウェブアプリケーション専用のフックが含まれています。これらのフックは、iOSAndroidWindows アプリケーションといった非ブラウザ環境ではサポートされていません。ウェブブラウザと*その他の環境*の両方でサポートされるフックを探している場合は、[React のフック一覧ページ](/reference/react)をご覧ください。このページは、`react-dom` パッケージのすべてのフックの一覧です。
88

99
</Intro>
1010

1111
---
1212

13-
## Form Hooks {/*form-hooks*/}
13+
## フォーム関連フック {/*form-hooks*/}
1414

1515
<Canary>
1616

17-
Form Hooks are currently only available in React's canary and experimental channels. Learn more about [React's release channels here](/community/versioning-policy#all-release-channels).
17+
フォーム関連フックは現在、React の Canary および experimental チャンネルでのみ利用可能です。[React のリリースチャンネルについてはこちらをご覧ください](/community/versioning-policy#all-release-channels)
1818

1919
</Canary>
2020

21-
*Forms* let you create interactive controls for submitting information. To manage forms in your components, use one of these Hooks:
21+
*フォーム*により、情報を送信するためのインタラクティブなコントロールを作成できます。コンポーネント内でフォームを管理するために以下のフックを使用できます。
2222

23-
* [`useFormStatus`](/reference/react-dom/hooks/useFormStatus) allows you to make updates to the UI based on the status of the a form.
24-
* [`useFormState`](/reference/react-dom/hooks/useFormState) allows you to manage state inside a form.
23+
* [`useFormStatus`](/reference/react-dom/hooks/useFormStatus) によりフォームのステータスに基づいて UI を更新できます。
24+
* [`useFormState`](/reference/react-dom/hooks/useFormState) によりフォーム内で state を管理できます。
2525

2626
```js
2727
function Form({ action }) {

0 commit comments

Comments
 (0)