mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
21 lines
391 B
JavaScript
21 lines
391 B
JavaScript
import { TabPanel } from '@wordpress/components';
|
|
|
|
const TabNavigation = ( { tabs } ) => {
|
|
|
|
const updatePanelUri = ( tabName ) => {
|
|
};
|
|
|
|
return (
|
|
<TabPanel
|
|
className={ `ppcp-r-tabs ${ panel }` }
|
|
onSelect={ updatePanelUri }
|
|
tabs={ tabs }
|
|
>
|
|
{ ( tab ) => {
|
|
return tab.component || <>{ tab.title ?? tab.name }</>;
|
|
} }
|
|
</TabPanel>
|
|
);
|
|
};
|
|
|
|
export default TabNavigation;
|