Skip to content

Commit

Permalink
Merge pull request #723 from reactjs/tr/react-dom-hooks-index
Browse files Browse the repository at this point in the history
Translate "Built-in React DOM Hooks"
  • Loading branch information
smikitky authored Dec 18, 2023
2 parents ab0bcab + 983f0d3 commit d63adb2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/content/reference/react-dom/hooks/index.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
---
title: "Built-in React DOM Hooks"
title: "組み込みの React DOM フック"
---

<Intro>

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.
`react-dom` パッケージには、(ブラウザ DOM 環境で実行される)ウェブアプリケーション専用のフックが含まれています。これらのフックは、iOSAndroidWindows アプリケーションといった非ブラウザ環境ではサポートされていません。ウェブブラウザと*その他の環境*の両方でサポートされるフックを探している場合は、[React のフック一覧ページ](/reference/react)をご覧ください。このページは、`react-dom` パッケージのすべてのフックの一覧です。

</Intro>

---

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

<Canary>

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).
フォーム関連フックは現在、React の Canary および experimental チャンネルでのみ利用可能です。[React のリリースチャンネルについてはこちらをご覧ください](/community/versioning-policy#all-release-channels)

</Canary>

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

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

```js
function Form({ action }) {
Expand Down

0 comments on commit d63adb2

Please sign in to comment.