deprecated
2 months ago
block.json
1 month ago
edit.js
2 months ago
icon.svg
2 months ago
index.js
2 months ago
index.php
2 months ago
save.js
2 months ago
edit.js
13 lines
| 1 | import { InnerBlocks, useBlockProps } from '@wordpress/block-editor'; |
| 2 | |
| 3 | export default function FAQ2QEit() { |
| 4 | const blockProps = useBlockProps({ |
| 5 | className: 'vk_faq_title', |
| 6 | }); |
| 7 | return ( |
| 8 | <dt {...blockProps}> |
| 9 | <InnerBlocks templateLock={false} template={[['core/paragraph']]} /> |
| 10 | </dt> |
| 11 | ); |
| 12 | } |
| 13 |