PluginProbe
WPZOOM Forms – Drag & Drop Contact Form Builder for WordPress / trunk
WPZOOM Forms – Drag & Drop Contact Form Builder for WordPress vtrunk
2.0.9 2.0.8 2.0.7 2.0.6 2.0.5 2.0.4 2.0.3 2.0.2 2.0.1 2.0.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 All 43 releases
wpzoom-forms / src / fields / submit / save.js

save.js in WPZOOM Forms – Drag & Drop Contact Form Builder for WordPress trunk, at src/fields/submit/save.js

15 lines 281 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { useBlockProps } from '@wordpress/block-editor';
2
3 const Save = ( { attributes } ) => {
4 const blockProps = useBlockProps.save();
5 const { id, name } = attributes;
6
7 return <input
8 type="submit"
9 id={ id }
10 value={ name }
11 { ...blockProps }
12 />;
13 };
14
15 export default Save;