/** * External dependencies */ import { TabPanel } from '@wordpress/components'; import { getNewPath, navigateTo } from '@woocommerce/navigation'; export const Tabs = ( { data, page, children } ) => { const onSelect = ( tabName ) => { const url = getNewPath( {}, `/settings/${ tabName }` ); navigateTo( { url } ); }; return ( <> ( { name: key, title: data[ key ].label, } ) ) } > { () =>
{ children }
}
); };