import { __ } from '@wordpress/i18n'; import { InnerBlocks, RichText, useBlockProps } from '@wordpress/block-editor'; type Props = { attributes: Record; }; const FAQItemSave = ({ attributes }: Props) => { const blockProps = useBlockProps.save(attributes); return (
); }; export default FAQItemSave;