edit.js in Sendy trunk, at src/edit.js
| 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 |