woocommerce/plugins/woocommerce-blocks/assets/js/blocks/reviews/save.js

15 lines
274 B
JavaScript
Raw Normal View History

/**
* Internal dependencies
*/
import './editor.scss';
import { getBlockClassName, getDataAttrs } from './utils.js';
export default ( { attributes } ) => {
return (
<div
className={ getBlockClassName( attributes ) }
{ ...getDataAttrs( attributes ) }
/>
);
};