import { useBlockProps, MediaPlaceholder, RichText, BlockControls, MediaReplaceFlow, } from "@wordpress/block-editor"; import { InnerBlocks } from "@wordpress/block-editor"; export default function save({ attributes }) { const { coverUrl, coverId, coverAlt, focusBullets } = attributes; const renderedFocusPointBullets = focusBullets.map((focusBullet, index) => { return ( ); }); return (
{coverUrl && (
{coverAlt} {renderedFocusPointBullets}
)}
); }