File "CartBlockHandler.js"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-googlepay/resources/js/Context/CartBlockHandler.js
File size: 283 bytes
MIME-type: text/x-java
Charset: utf-8

import BaseHandler from './BaseHandler';

class CartBlockHandler extends BaseHandler {
	createOrder() {
		return this.externalHandler.createOrder();
	}

	approveOrder( data, actions ) {
		return this.externalHandler.onApprove( data, actions );
	}
}

export default CartBlockHandler;