# post-carousel/4.0.3/src/blocks/shared/SaveComponent.js

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.3. 13 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.3/code/src/blocks/shared/SaveComponent.js
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.3/raw/src/blocks/shared/SaveComponent.js
- Modified: 2026-04-24T11:48:54+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/post-carousel/4.0.3/code/src/blocks/shared/SaveComponent.js#L10-L20`.

```javascript
import { InnerBlocks, useBlockProps } from "@wordpress/block-editor";

const SaveComponent = () => {
	const blockProps = useBlockProps.save();
	return (
		<div {...blockProps}>
			<InnerBlocks.Content />
		</div>
	);
};

export default SaveComponent;

```
