--- type Props = { colors: string[] } const { colors } = Astro.props ---
{ colors.map(value => ( <>
{value}
)) }