diff --git a/src/pages/en/core-concepts/astro-components.md b/src/pages/en/core-concepts/astro-components.md index 0a9d2dbfe7c41..fa73a7693c56f 100644 --- a/src/pages/en/core-concepts/astro-components.md +++ b/src/pages/en/core-concepts/astro-components.md @@ -154,9 +154,17 @@ const items = ["Dog", "Cat", "Platypus"]; #### Fragments & Multiple Elements -Remember: an Astro component template can render multiple elements with no need to wrap everything in a single `
No need to wrap elements in a single containing element.
+Astro supports multiple root elements in a template.
+``` + +However, when using an expression to dynamically create multiple elements, you should wrap these elements inside a **fragment** as you would in JavaScript or JSX. Astro supports using either `Raw HTML content
'; +--- +