Skip to content

Commit

Permalink
Update src/content/reference/react/cache.md
Browse files Browse the repository at this point in the history
Co-authored-by: Soichiro Miki <smiki-tky@umin.ac.jp>
  • Loading branch information
locol23 and smikitky authored Oct 12, 2023
1 parent 51a14e1 commit 60b6d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react/cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ async function MinimalWeatherCard({city}) {
}
```

`AnimatedWeatherCard``MinimalWeatherCard` の両方が同じ <CodeStep step={1}>city</CodeStep> でレンダーする場合、<CodeStep step={2}>メモ化された関数</CodeStep> から同じデータのスナップショットを受け取ります。
`AnimatedWeatherCard``MinimalWeatherCard` の両方が同じ <CodeStep step={1}>city</CodeStep> でレンダーする場合、<CodeStep step={2}>メモ化された関数</CodeStep>から同じデータのスナップショットを受け取ります。

`AnimatedWeatherCard``MinimalWeatherCard` が異なる <CodeStep step={1}>city</CodeStep> 引数を <CodeStep step={2}>`getTemperature`</CodeStep> に渡した場合、`fetchTemperature` は 2 回呼び出され、それぞれの呼び出しが異なるデータを受け取ります。

Expand Down

0 comments on commit 60b6d8c

Please sign in to comment.