/** * WordPress dependencies */ import { registerBlockType } from '@wordpress/blocks'; import { BlockControls, useBlockProps } from '@wordpress/block-editor'; // Register the block registerBlockType( 'beyondwords/player', { edit() { const blockProps = useBlockProps( { contentEditable: false } ); return (
); }, save() { const blockProps = useBlockProps.save( { contentEditable: false } ); return (
); }, } );