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