'use client' import type { EventManagementInsights } from '@/services/eventManagement' import { formatCurrency } from '@/helpers' import { InsightStat } from './AdminEventDetailUi' interface AdminEventFinancialTabProps { insights: EventManagementInsights | null } const AdminEventFinancialTab = ({ insights }: AdminEventFinancialTabProps) => { if (!insights) { return

اطلاعاتی یافت نشد.

} return (
) } export default AdminEventFinancialTab