diff --git a/pages/patterns/react-patterns/hooks-pattern.mdx b/pages/patterns/react-patterns/hooks-pattern.mdx index 0fc32ad..8ac16b1 100644 --- a/pages/patterns/react-patterns/hooks-pattern.mdx +++ b/pages/patterns/react-patterns/hooks-pattern.mdx @@ -49,7 +49,7 @@ We _could_ just add this logic to the `Listing` component itself. However, in or controls /> -Now that it's a hook, we can reuse the same logic throughout multiple components in our application. For example, if we also wnated to add the hover logic to the `Image` and `Button` component, we can simply use the hook within these functional components. +Now that it's a hook, we can reuse the same logic throughout multiple components in our application. For example, if we also wanted to add the hover logic to the `Image` and `Button` component, we can simply use the hook within these functional components.