import { WYSIWYG_STYLES } from "@/components/generic/Blocks/Admin/TextBlock"; import { ImageBlock } from "./ImageBlock"; export function TextImageBlock({ content }) { const imgLeft = content.image_position === "left"; return ( <>
{imgLeft && }
Empty text

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