'use client' import { TabId } from '../_types' interface TabNavProps { activeTab: TabId onTabChange: (tab: TabId) => void logsTotal: number } const TABS: { id: TabId; label: string }[] = [ { id: 'templates', label: 'Templates' }, { id: 'editor', label: 'Editor' }, { id: 'settings', label: 'Einstellungen' }, { id: 'logs', label: 'Logs' }, ] export function TabNav({ activeTab, onTabChange, logsTotal }: TabNavProps) { return (
) }