import { ImageBlock } from "./ImageBlock"; export function TextImageBlock({ content }) { const imgLeft = content.image_position === "left"; return (
{imgLeft && }
Empty text

" }} /> {!imgLeft && }
); }