From c3b5da8f0f1fe1a59daca54b04347377390eb6ef Mon Sep 17 00:00:00 2001 From: Jacek Pudysz Date: Mon, 20 Jan 2025 09:25:52 +0100 Subject: [PATCH] fix: docs typo --- docs/src/content/docs/v3/references/use-unistyles.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/v3/references/use-unistyles.mdx b/docs/src/content/docs/v3/references/use-unistyles.mdx index ca13a9d4..a2657688 100644 --- a/docs/src/content/docs/v3/references/use-unistyles.mdx +++ b/docs/src/content/docs/v3/references/use-unistyles.mdx @@ -125,7 +125,7 @@ const MyComponent = () => { ) } ``` -This will re-render multiple components unnecessarily. Instead move `Blurhash` to a separate component and use `withUnistyles` there. +This will re-render multiple components unnecessarily. Instead move `Blurhash` to a separate component and use `useUnistyles` there. #### 2. Using it at the root level: ```tsx