From ea5afcd6334c25c7a38f8f381d400bef1bb6dbc9 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Thu, 8 Jul 2021 11:55:52 -0500 Subject: [PATCH] Update component-hydration.md --- docs/core-concepts/component-hydration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core-concepts/component-hydration.md b/docs/core-concepts/component-hydration.md index 434a621afa..f03931534c 100644 --- a/docs/core-concepts/component-hydration.md +++ b/docs/core-concepts/component-hydration.md @@ -25,7 +25,7 @@ With Astro, you can hydrate these components individually, without forcing the r ## Hydrate Frontend Components -Astro renders every component on the server at build time. To hydrate your components on the client at runtime, you may use any of the following techniques: +Astro renders every component on the server **at build time**. To hydrate any server-rendered component on the client **at runtime**, you may use any of the following techniques: - `` will hydrate the component on page load. - `` will use [requestIdleCallback()][mdn-ric] to hydrate the component as soon as main thread is free.