"use client"; import { TimerCell } from "@/components/admin/TimerCell"; import { ProfitabilityCard } from "@/components/admin/ProfitabilityCard"; type TimerTabProps = { projectId: string; acceptedTotal: string; activeTimerEntryId: string | null; activeTimerStartedAt: Date | null; totalTrackedSeconds: number; targetHourlyRate: number; }; export function TimerTab({ projectId, acceptedTotal, activeTimerEntryId, activeTimerStartedAt, totalTrackedSeconds, targetHourlyRate, }: TimerTabProps) { return (