# ghostkit/3.4.1/gutenberg/blocks/grid/transforms.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.4.1. 22 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.4.1/code/gutenberg/blocks/grid/transforms.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.4.1/raw/gutenberg/blocks/grid/transforms.js
- Modified: 2024-02-18T18:40:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.4.1/code/gutenberg/blocks/grid/transforms.js#L10-L20`.

```javascript
import { createBlock } from '@wordpress/blocks';

export default {
	from: [
		{
			type: 'block',
			blocks: ['core/columns'],
			transform(attrs, InnerBlocks) {
				return createBlock(
					'ghostkit/grid',
					{
						columns: attrs.columns,
					},
					InnerBlocks.map((col) =>
						createBlock('ghostkit/grid-column', {}, col.innerBlocks)
					)
				);
			},
		},
	],
};

```
