File "save.js"

Full Path: /home/warrior1/public_html/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/save.js
File size: 403 bytes
MIME-type: text/x-java
Charset: utf-8

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

/**
 * Internal dependencies
 */
import './editor.scss';
import { getBlockClassName, getDataAttrs } from './utils.js';

export default ( { attributes } ) => {
	return (
		<div
			{ ...useBlockProps.save( {
				className: getBlockClassName( attributes ),
			} ) }
			{ ...getDataAttrs( attributes ) }
		/>
	);
};