import React from 'react'; import { Tabs } from 'components/shared/Tabs'; import { Badge } from 'components/shared/Badge'; import { GlobeIcon } from 'components/shared/CustomIcon'; const tabs = Array.from({ length: 8 }); export const renderTabs = () => { return ( {tabs.map((_, index) => ( Tab item {index} ))} ); }; export const renderTabWithBadges = () => { return ( {tabs.map((_, index) => ( {index}} > Tab item ))} ); }; export const renderVerticalTabs = () => { return ( {tabs.slice(0, 4).map((_, index) => ( } value={index.toString()} > Tab item {index} ))} ); };