PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
the-grid
/
backend
/
assets
/
js
/
gutenberg
/
grid
/** * WordPress Dependencies */ const { BlockControls, BlockAlignmentToolbar, } = wp.editor; /** * Block controls component * * @param {object} props */ export default props => { const { attributes, setAttributes, } = props; const { align } = attributes; return ( <BlockControls key="controls"> <BlockAlignmentToolbar value={ align } onChange={ align => setAttributes( { align } ) } controls={ [ 'wide', 'full' ] } /> </BlockControls> ); }
[+]
..
[-] inspector.js
[edit]
[-] controls.js
[edit]
[-] edit.js
[edit]
[-] select.js
[edit]
[-] index.js
[edit]