# ghostkit/3.4.1/gutenberg/blocks/markdown/save.js

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

- Page: https://pluginprobe.com/plugins/ghostkit/3.4.1/code/gutenberg/blocks/markdown/save.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.4.1/raw/gutenberg/blocks/markdown/save.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/markdown/save.js#L10-L20`.

```javascript
import classnames from 'classnames/dedupe';

import { useBlockProps } from '@wordpress/block-editor';

import MDRender from './render';

/**
 * Block Save Class.
 *
 * @param props
 */
export default function BlockSave(props) {
	const { attributes } = props;
	const { content } = attributes;

	let { className } = attributes;

	className = classnames('ghostkit-markdown', className);

	const blockProps = useBlockProps.save({ className });

	return <MDRender content={content} {...blockProps} />;
}

```
