From 43d87bfd46dda79e6e6c9e8520d3e937bbfda71b Mon Sep 17 00:00:00 2001 From: Mikhail Vasin <12434833+mvasin@users.noreply.github.com> Date: Fri, 5 Mar 2021 20:58:33 +0100 Subject: [PATCH] Fix typos --- docs/usage/ssr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/ssr.md b/docs/usage/ssr.md index 62eb2681..e3ff6672 100644 --- a/docs/usage/ssr.md +++ b/docs/usage/ssr.md @@ -23,7 +23,7 @@ to use SSR semantics. ## Hydration -The result of rendering you hook is static are not interactive until it is hydrated into the DOM. +The result of rendering your hook is static and not interactive until it is hydrated into the DOM. This can be done using the `hydrate` function that is returned from `renderHook`. Consider the `useCounter` example from the [Basic Hooks section](/usage/basic-hooks):