/** * Section Tabs Component * Reusable tab navigation for sections with multiple tabs */ import React from "react"; import { __ } from "../../../lib/i18n"; export interface Tab { id: string; label: string; } interface SectionTabsProps { tabs: Tab[]; activeTab: string; onTabChange: (tabId: string) => void; } export const SectionTabs: React.FC = ({ tabs, activeTab, onTabChange, }) => { return (
{tabs.map((tab) => ( ))}
); };