PluginProbe
GenerateBlocks / 1.5.4
GenerateBlocks v1.5.4
2.4.1 2.4.0 trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 All 46 releases
generateblocks / src / blocks / container / components / GridItem.js
GridItem.js
8 lines 193 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export default ( { isGrid, uniqueId, children } ) => {
2 if ( ! isGrid ) {
3 return children;
4 }
5
6 return <div className={ `gb-grid-column gb-grid-column-${ uniqueId }` }>{ children }</div>;
7 };
8