diff --git a/beta/src/content/reference/react/useState.md b/beta/src/content/reference/react/useState.md index 26954fce..86dd260b 100644 --- a/beta/src/content/reference/react/useState.md +++ b/beta/src/content/reference/react/useState.md @@ -1075,7 +1075,7 @@ Usually, you will update state in event handlers. However, in rare cases you mig In most cases, you don't need this: -* **If the value you need can be computed entirely from the current props or other state, [remove that redundant state altogether.](/learn/choosing-the-state-structure#avoid-redundant-state)** If you're worried about recomputing too often, the [`useMemo` Hook](/reference/react/usememo) can help. +* **If the value you need can be computed entirely from the current props or other state, [remove that redundant state altogether.](/learn/choosing-the-state-structure#avoid-redundant-state)** If you're worried about recomputing too often, the [`useMemo` Hook](/reference/react/useMemo) can help. * If you want to reset the entire component tree's state, [pass a different `key` to your component.](#resetting-state-with-a-key) * If you can, update all the relevant state in the event handlers.