Skip to content

Commit

Permalink
Update src/content/reference/rules/rules-of-hooks.md
Browse files Browse the repository at this point in the history
Co-authored-by: Toru Kobayashi <[email protected]>
  • Loading branch information
smikitky and koba04 authored Apr 11, 2024
1 parent 1ec8df0 commit ee994cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/rules/rules-of-hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ title: フックのルール

`use` で始まる関数名を持つ関数は React では[*フック (hook)*](/reference/react) と呼ばれます。

**ループ、条件分岐、ネストされた関数、`try`/`catch`/`finally` ブロックの内部でフックを呼び出してはいけません**。代わりに、フックは常に React 関数のトップレベルで、早期 return を行う前に行います。フックは React が関数コンポーネントをレンダーしている間にのみ呼び出すことができます。
**ループ、条件分岐、ネストされた関数、`try`/`catch`/`finally` ブロックの内部でフックを呼び出してはいけません**。代わりに、フックは常に React 関数のトップレベルで、早期 return を行う前に呼び出します。フックは React が関数コンポーネントをレンダーしている間にのみ呼び出すことができます。

*[関数コンポーネント](/learn/your-first-component)本体のトップレベルで呼び出す。
*[カスタムフック](/learn/reusing-logic-with-custom-hooks)本体のトップレベルで呼び出す。
Expand Down

0 comments on commit ee994cb

Please sign in to comment.