diff --git a/mailpoet/assets/js/src/email-editor/engine/blocks/core/post-content.tsx b/mailpoet/assets/js/src/email-editor/engine/blocks/core/post-content.tsx new file mode 100644 index 0000000000..86e058e019 --- /dev/null +++ b/mailpoet/assets/js/src/email-editor/engine/blocks/core/post-content.tsx @@ -0,0 +1,58 @@ +import { addFilter } from '@wordpress/hooks'; +import { Block } from '@wordpress/blocks'; +import { __ } from '@wordpress/i18n'; +import { useBlockProps } from '@wordpress/block-editor'; + +function Placeholder({ layoutClassNames }) { + const blockProps = useBlockProps({ className: layoutClassNames }); + return ( +
{__('This is the Content block.', 'mailpoet')}
++ {__( + 'It will display all the blocks in the email content, which might be only simple text paragraphs. You can enrich your message with images, incorporate data through tables, explore different layout designs with columns, or use any other block type.', + 'mailpoet', + )} +
+