New reusable TopNavigation component

This commit is contained in:
Philipp Stracker 2025-01-10 15:12:57 +01:00
parent db7e5e0dae
commit d588a9cd18
No known key found for this signature in database
2 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,10 @@
/**
* 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 };
};