--- interface ClientItem { name: string; logo: string; } interface Props { items: ClientItem[]; } const { items } = Astro.props; ---
{items.map((item) => ( {item.name} ))}
{items.map((item) => ( {item.name} ))}