22 lines
375 B
JavaScript
22 lines
375 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { Placeholder } from '@wordpress/components';
|
||
|
|
||
|
/**
|
||
|
* Component to handle edit mode for the Cart block when user has something in cart aka "full".
|
||
|
*/
|
||
|
const Cart = () => {
|
||
|
return (
|
||
|
<Placeholder>
|
||
|
<span>
|
||
|
Cart block <b>full state</b> coming soon…
|
||
|
</span>
|
||
|
</Placeholder>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
Cart.propTypes = {};
|
||
|
|
||
|
export default Cart;
|