Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
fixes #785
  • Loading branch information
smikitky authored Aug 21, 2024
1 parent bf49e82 commit de4c0bd
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 de4c0bd

Please sign in to comment.