import { useBlockProps, MediaPlaceholder, RichText, BlockControls, MediaReplaceFlow, } from "@wordpress/block-editor"; export default function save({ attributes }) { const { coverUrl, coverId, coverAlt, heightFixed } = attributes; return (
{coverUrl && (
{coverAlt}
)}
); }