Astro.js map data into components
I have a list of objects I would like to map into components in Astro.
Here's my
And here is the call inside of
However, nothing is being show on my website, and nothing is rendered in the DOM.
In the Astro docs, they have a simple example here (https://docs.astro.build/en/core-concepts/astro-components/):
I thought this would be something really simple, but nothing is working. I've tried to remove my
Here's my
Carousel.astro component:And here is the call inside of
index.astro:However, nothing is being show on my website, and nothing is rendered in the DOM.
In the Astro docs, they have a simple example here (https://docs.astro.build/en/core-concepts/astro-components/):
I thought this would be something really simple, but nothing is working. I've tried to remove my
CarouselItem component and just render the item properties by themselves but even that doesn't render anything in the DOM. I am also sure that my data is available. Am I missing something obvious?