From 2b4e945f3ac147af2f03b5171b56cde83ecfcd1d Mon Sep 17 00:00:00 2001 From: Cole Milne Date: Sun, 24 Nov 2024 11:44:49 -0800 Subject: [PATCH] Add cross-reference link in Image component docs to UI framework usage --- src/content/docs/en/guides/images.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/images.mdx b/src/content/docs/en/guides/images.mdx index a126d37c82164..3c30a681cef74 100644 --- a/src/content/docs/en/guides/images.mdx +++ b/src/content/docs/en/guides/images.mdx @@ -396,7 +396,7 @@ const allBlogPosts = await getCollection("blog"); The `` component, like any other Astro component, is unavailable inside UI framework components. -But, you can pass the static content generated by `` to a framework component inside a `.astro` file as children or using a [named ``](/en/guides/framework-components/#can-i-use-astro-components-inside-my-framework-components): +But, you can pass the static content generated by `` to a framework component inside a `.astro` file [as children](/en/guides/framework-components/#passing-children-to-framework-components) or using a [named ``](/en/guides/framework-components/#can-i-use-astro-components-inside-my-framework-components): ```astro title="src/components/ImageWrapper.astro"