Skip to content

Commit

Permalink
Merge pull request #786 from reactjs/smikitky-patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
smikitky authored Aug 21, 2024
2 parents bf49e82 + de4c0bd commit 133bbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react/useEffect.md
Original file line number Diff line number Diff line change
Expand Up @@ -1724,7 +1724,7 @@ function Page({ url, shoppingCart }) {
}
```
**エフェクトイベントはリアクティブでなはいため、あなたのエフェクトの依存配列からは常に除く必要があります**。これにより、非リアクティブなコード(最新の props や state の値を読むことができるコード)をエフェクトイベント内に入れることができます。`onVisit` の中で `shoppingCart` を読むことで、`shoppingCart` がエフェクトを再実行することがなくなります。
**エフェクトイベントはリアクティブではないため、あなたのエフェクトの依存配列からは常に除く必要があります**。これにより、非リアクティブなコード(最新の props や state の値を読むことができるコード)をエフェクトイベント内に入れることができます。`onVisit` の中で `shoppingCart` を読むことで、`shoppingCart` がエフェクトを再実行することがなくなります。
[エフェクトイベントがリアクティブなコードと非リアクティブなコードをどのように分離するか詳しく読む](/learn/separating-events-from-effects#reading-latest-props-and-state-with-effect-events)。
Expand Down

0 comments on commit 133bbdf

Please sign in to comment.