PluginProbe
Sendy / trunk
Sendy vtrunk
3.4.6 3.4.7 trunk 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 All 32 releases
sendy / src / edit.js

edit.js in Sendy trunk, at src/edit.js

22 lines 448 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 export const Edit = () => {
4 const blockProps = useBlockProps();
5 return (
6 <div { ...blockProps }>
7 <h3 className="wc-block-components-title">Pick-up punt</h3>
8
9 <button onClick={ ( e ) => e.preventDefault() }>
10 Selecteer pick-up punt
11 </button>
12
13 <p>
14 <small>
15 Dit blok is alleen zichtbaar bij verzending naar een pick-up
16 punt
17 </small>
18 </p>
19 </div>
20 );
21 };
22