mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 16:24:33 +08:00
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
/**
|
|
* 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 };
|
|
};
|