woocommerce-paypal-payments/modules/ppcp-settings/resources/js/hooks/useNavigation.js

11 lines
281 B
JavaScript
Raw Normal View History

/**
* Navigate to the WooCommerce "Payments" settings tab, i.e. exit the settings app.
*/
const goToWooCommercePaymentsTab = () => {
window.location.href = window.ppcpSettings.wcPaymentsTabUrl;
};
export const useNavigation = () => {
return { goToWooCommercePaymentsTab };
};