--- import { Image } from "@astrojs/image/components"; import { getContentArray } from "../utils/helpers"; const { content } = Astro.props; const contentArray = getContentArray(content); ---
{ contentArray.map((value) => { if (typeof value === "string") { return
; } else { return ( hallo ); } }) }