diff options
author | 2021-07-08 11:55:52 -0500 | |
---|---|---|
committer | 2021-07-08 11:55:52 -0500 | |
commit | ea5afcd6334c25c7a38f8f381d400bef1bb6dbc9 (patch) | |
tree | 5412407d41ffe29347c4cfdbab36758cec887283 | |
parent | ee4bcb57296d3631a253f25eb5e5aff2284c0bdb (diff) | |
download | astro-ea5afcd6334c25c7a38f8f381d400bef1bb6dbc9.tar.gz astro-ea5afcd6334c25c7a38f8f381d400bef1bb6dbc9.tar.zst astro-ea5afcd6334c25c7a38f8f381d400bef1bb6dbc9.zip |
Update component-hydration.md
-rw-r--r-- | docs/core-concepts/component-hydration.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/core-concepts/component-hydration.md b/docs/core-concepts/component-hydration.md index 434a621af..f03931534 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: - `<MyComponent:load />` will hydrate the component on page load. - `<MyComponent:idle />` will use [requestIdleCallback()][mdn-ric] to hydrate the component as soon as main thread is free. |