summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Gustavo Paes <gustavopaes@users.noreply.github.com> 2022-01-20 17:19:28 -0300
committerGravatar GitHub <noreply@github.com> 2022-01-20 14:19:28 -0600
commitac0e20d9f21a56db24552abc0dd11e494a3730af (patch)
treeb804da29aa93842d3d1be45e11917c820764099c /docs/src
parentd1b8fa9b04245c9473bc94a51efdfde0f69dabef (diff)
downloadastro-ac0e20d9f21a56db24552abc0dd11e494a3730af.tar.gz
astro-ac0e20d9f21a56db24552abc0dd11e494a3730af.tar.zst
astro-ac0e20d9f21a56db24552abc0dd11e494a3730af.zip
doc: fix "Astro Components" link reference (#2431)
* doc: fix Astro components link * doc: does not include a trailing slash Co-authored-by: Evan Boehs <evan@boehs.org> Co-authored-by: Evan Boehs <evan@boehs.org>
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/en/core-concepts/component-hydration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/en/core-concepts/component-hydration.md b/docs/src/pages/en/core-concepts/component-hydration.md
index ac9e33e79..b319ecda5 100644
--- a/docs/src/pages/en/core-concepts/component-hydration.md
+++ b/docs/src/pages/en/core-concepts/component-hydration.md
@@ -92,7 +92,7 @@ If more than one renderer is included in the Astro [config](/en/reference/config
## Can I Hydrate Astro Components?
-[Astro components](./astro-components) (`.astro` files) are HTML-only templating components with no client-side runtime. If you try to hydrate an Astro component with a `client:` modifier, you will get an error.
+[Astro components](/en/core-concepts/astro-components) (`.astro` files) are HTML-only templating components with no client-side runtime. If you try to hydrate an Astro component with a `client:` modifier, you will get an error.
To make your Astro component interactive, you will need to convert it to the frontend framework of your choice: React, Svelte, Vue, etc. If you have no preference, we recommend React or Preact as they are most similar to Astro's syntax.