summaryrefslogtreecommitdiff
blob: 0894ffec02589a6d174238e644946a0b762ca8f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * External dependencies
 */
import { __ } from '@wordpress/i18n';
import { Component } from '@wordpress/element';

/**
 * Internal dependencies
 */
import './editor.scss';

class {{ className }}Edit extends Component {
	/**
	 * Write the block editor UI.
	 *
	 * @returns {object} The UI displayed when user edits this block.
	 */
    render() {
        const { attributes, setAttributes } = this.props;

        return (
			<p>{ __( 'Block edit goes here', 'jetpack' ) }</p>
        );
    }
}

export default {{ className }}Edit;