Skip to content

Commit

Permalink
Merge pull request #795 from reactjs/fix-escape-hatch-index
Browse files Browse the repository at this point in the history
Fix link text in escape-hatches.md
  • Loading branch information
smikitky authored Sep 28, 2024
2 parents fc2d84f + 1128cd2 commit 48913bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/learn/escape-hatches.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ input { display: block; margin-bottom: 20px; }

</LearnMore>

## エフェクトは必要ないかもしれない {/*you-might-not-need-an-effect*/}
## そのエフェクトは必要かも {/*you-might-not-need-an-effect*/}

エフェクトは React のパラダイムからの避難ハッチです。React の外に「踏み出して」、何らかの外部システムと同期させることができるものです。外部システムが関与していない場合(例えば、props や state の変更に合わせてコンポーネントの state を更新したい場合)、エフェクトは必要ありません。不要なエフェクトを削除することで、コードが読みやすくなり、実行速度が向上し、エラーが発生しにくくなります。

Expand Down Expand Up @@ -231,7 +231,7 @@ function Form() {

<LearnMore path="/learn/you-might-not-need-an-effect">

[**エフェクトは必要ないかもしれない**](/learn/you-might-not-need-an-effect)を読んで、不要なエフェクトを削除する方法を学びましょう。
[**そのエフェクトは不要かも**](/learn/you-might-not-need-an-effect)を読んで、不要なエフェクトを削除する方法を学びましょう。

</LearnMore>

Expand Down

0 comments on commit 48913bd

Please sign in to comment.