diff --git a/src/content/reference/react-dom/hooks/useFormStatus.md b/src/content/reference/react-dom/hooks/useFormStatus.md index 67a06022b..88fabf5a2 100644 --- a/src/content/reference/react-dom/hooks/useFormStatus.md +++ b/src/content/reference/react-dom/hooks/useFormStatus.md @@ -5,13 +5,13 @@ canary: true -The `useFormStatus` Hook is currently only available in React's Canary and experimental channels. Learn more about [React's release channels here](/community/versioning-policy#all-release-channels). +`useFormStatus` フックは、現在 React の Canary および experimental チャンネルでのみ利用可能です。[リリースチャンネルについてはこちらをご覧ください](/community/versioning-policy#all-release-channels)。 -`useFormStatus` is a Hook that gives you status information of the last form submission. +`useFormStatus` は、直近のフォーム送信に関するステータス情報を提供するフックです。 ```js const { pending, data, method, action } = useFormStatus(); @@ -23,11 +23,11 @@ const { pending, data, method, action } = useFormStatus(); --- -## Reference {/*reference*/} +## リファレンス {/*reference*/} ### `useFormStatus()` {/*use-form-status*/} -The `useFormStatus` Hook provides status information of the last form submission. +`useFormStatus` フックは、直近のフォーム送信に関するステータス情報を提供します。 ```js {5},[[1, 6, "status.pending"]] import { useFormStatus } from "react-dom"; @@ -47,42 +47,42 @@ export default App() { } ``` -To get status information, the `Submit` component must be rendered within a `
`. The Hook returns information like the `pending` property which tells you if the form is actively submitting. +ステータス情報を取得するには、この `Submit` コンポーネントが `` 内でレンダーされている必要があります。このフックは、フォームが送信中かどうかを示す `pending` プロパティなどの情報を返します。 -In the above example, `Submit` uses this information to disable `