fix: broken link (#6115)

This commit is contained in:
yuta-ike
2023-06-26 14:55:19 +09:00
committed by GitHub
parent 9a1e1c61fc
commit f5ffb3f0fb

View File

@@ -228,7 +228,7 @@ function MyComponent() {
If you *have to* read [or write](/reference/react/useState#storing-information-from-previous-renders) something during rendering, [use state](/reference/react/useState) instead.
When you break these rules, your component might still work, but most of the newer features we're adding to React will rely on these expectations. Read more about [keeping your components pure.](/learn/keeping-components-pure#where-you-can-cause-side-effects)
When you break these rules, your component might still work, but most of the newer features we're adding to React will rely on these expectations. Read more about [keeping your components pure.](/learn/keeping-components-pure#where-you-_can_-cause-side-effects)
</Pitfall>