import { actionBadgeStyle } from "@/lib/colors"; import { fmtDate } from "@/lib/format"; import type { Database } from "@/lib/supabase/types"; type HistoryRow = Database["public"]["Tables"]["employee_history"]["Row"]; export function HistorieTab({ history }: { history: HistoryRow[] }) { const today = new Date().toISOString().slice(0, 10); if (history.length === 0) { return
Keine Historieneinträge vorhanden.
; } return ({h.description}