/** * External dependencies */ import { withRestApiHydration } from '@woocommerce/block-hocs'; /** * Internal dependencies */ import Block from './block.js'; import renderFrontend from '../../../utils/render-frontend.js'; const getProps = () => { return { attributes: {}, }; }; renderFrontend( '.wp-block-woocommerce-cart', withRestApiHydration( Block ), getProps );