import { useBlockProps, RichText, InnerBlocks } from "@wordpress/block-editor"; export default function save({ attributes }) { const { disposition, coverUrl, coverAlt, coverSize, backgroundColor, hasBackgroundColor, backgroundOrientation, blockWidth, } = attributes; return (
{hasBackgroundColor && backgroundColor && ( )}
{coverUrl && ( {coverAlt} )}
); }