Created
December 12, 2018 21:15
Revisions
-
awakekat created this gist
Dec 12, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ const { __, setLocaleData } = wp.i18n; const { registerBlockType } = wp.blocks; const blockStyle = { backgroundColor: '#900', color: '#fff', padding: '20px', }; setLocaleData( window.gutenberg_examples_01_esnext.localeData, 'gutenberg-examples' ); registerBlockType( 'gutenberg-examples/example-01-basic-esnext', { title: __( 'Example: Basic (esnext)', 'gutenberg-examples' ), icon: 'universal-access-alt', category: 'layout', edit() { return <div style={ blockStyle }>Basic example with JSX! (editor)</div>; }, save() { return <div style={ blockStyle }>Basic example with JSX! (front)</div>; }, } );