/var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/blocks/quote
Edit: /var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/blocks/quote/index.js (1849B)
import { useState, useEffect, useRef } from '@wordpress/element';
import { useBlockProps, RichText } from '@wordpress/block-editor';
export const RenderQuoteBlock = (props) =>{
const { _props, pl_props, tag, data } = props;
const { setAttributes } = _props;
const { atts : attributes} = data;
return (
<>
{ attributes?.quotation_pos && (
)}
{ attributes?.double_indent && ( )}
setAttributes({ quote_content: value })}
value={attributes.quote_content}
/>
{ attributes?.double_indent && ( )}
>
);
}