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
save.js
16 lines
| 1 | import { InnerBlocks, useBlockProps } from '@wordpress/block-editor'; |
| 2 | import { __ } from '@wordpress/i18n'; |
| 3 | |
| 4 | export default function save() { |
| 5 | return ( |
| 6 | <dt |
| 7 | {...useBlockProps.save({ |
| 8 | className: `vk_faq_title`, |
| 9 | 'aria-label': __('Question', 'vk-blocks'), |
| 10 | })} |
| 11 | > |
| 12 | <InnerBlocks.Content /> |
| 13 | </dt> |
| 14 | ); |
| 15 | } |
| 16 |