diff --git a/source/wp-content/themes/wporg-main-2022/patterns/blocks.php b/source/wp-content/themes/wporg-main-2022/patterns/blocks.php index 82179104..69b9c1d1 100644 --- a/source/wp-content/themes/wporg-main-2022/patterns/blocks.php +++ b/source/wp-content/themes/wporg-main-2022/patterns/blocks.php @@ -164,7 +164,7 @@ -
+ @@ -210,12 +210,12 @@registerBlockType( 'your-first-block/hello-world', {
- edit: function () {
- return <p>Hello world (from the editor)</p>;
+registerBlockType( 'your-first-block/hello-world', {
+ edit: function () {
+ return <p>Hello world (from the editor)</p>;
},
- save: function () {
- return <p>Hello world (from the frontend)</p>;
+ save: function () {
+ return <p>Hello world (from the frontend)</p>;
},
} );