From 9bf8072b0d579f376b04093f13010d1a4933cb24 Mon Sep 17 00:00:00 2001 From: Raul Calvo <83084121+raul-repos@users.noreply.github.com> Date: Wed, 7 Jun 2023 13:02:52 +0200 Subject: [PATCH] Fix typo --- pages/patterns/react-patterns/hooks-pattern.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.