'use client' import React from 'react' export type TabId = 'overview' | 'new_reports' | 'investigation' | 'closed' | 'settings' export interface Tab { id: TabId label: string count?: number countColor?: string } export function TabNavigation({ tabs, activeTab, onTabChange }: { tabs: Tab[] activeTab: TabId onTabChange: (tab: TabId) => void }) { return (
) }