12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
import { __ } from "@wordpress/i18n";
|
||
import { useBlockProps } from "@wordpress/block-editor";
|
||
import "./editor.scss";
|
||
|
||
export default function Edit() {
|
||
return (
|
||
<p {...useBlockProps()}>
|
||
{__("Grid de dictionnaires – hello from the editor!", "dbmob-grid")}
|
||
</p>
|
||
);
|
||
}
|