import { registerBlockType } from '@wordpress/blocks'; import ServerSideRender from '@wordpress/server-side-render'; import { useBlockProps } from '@wordpress/block-editor'; registerBlockType('um-block/um-password-reset', { edit: function (props) { const blockProps = useBlockProps(); return (
); }, save: function save(props) { return null; } });