import { useBlockProps, InnerBlocks } from "@wordpress/block-editor"; import Image from "../../_components/Image"; export default function save({ attributes }) { let { imageAlt, imageUrl, imageProportion, contentDisposition } = attributes; return (
{contentDisposition === "left" && ( <>
)} {contentDisposition === "right" && ( <>
)}
); }