15 lines
310 B
JavaScript
15 lines
310 B
JavaScript
import { useBlockProps } from "@wordpress/block-editor";
|
|
import { InnerBlocks } from "@wordpress/block-editor";
|
|
|
|
export default function save({ attributes }) {
|
|
return (
|
|
<div
|
|
{...useBlockProps.save({
|
|
className: `homegrade-blocks-explainer-screen`,
|
|
})}
|
|
>
|
|
<InnerBlocks.Content />
|
|
</div>
|
|
);
|
|
}
|